Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / DrawingContextWalker.cs / 1 / DrawingContextWalker.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: Contains base class for DrawingContext iterators // // History: // // 2004/04/02 : [....] - Created it. // 2005/06/20 : [....] - Moved to codegen // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Windows.Threading; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Imaging; using System.Windows.Media.Media3D; using MS.Internal; namespace System.Windows.Media { ////// DrawingContextWalker : The base class for DrawingContext iterators. /// This is *not* thread safe /// internal abstract partial class DrawingContextWalker : DrawingContext { ////// Constructor for DrawingContextWalker /// protected DrawingContextWalker() { // Nothing to do here } ////// DrawingContextWalker implementations are never opened, so they shouldn't be closed. /// public override sealed void Close() { Debug.Assert(false); } #region Protected methods ////// DrawingContextWalker implementations are never opened, so they shouldn't be disposed. /// protected override void DisposeCore() { Debug.Assert(false); } ////// StopWalking - If this called, the current walk will stop. /// protected void StopWalking() { _stopWalking = true; } #endregion Protected methods #region Internal properties ////// ShouldStopWalking Property - internal clients can consult this property to determine /// whether or not the implementer of this DrawingContextWalker has called StopWalking. /// This can also be set by internal callers. /// internal bool ShouldStopWalking { get { return _stopWalking; } set { _stopWalking = value; } } #endregion Internal properties #region Private Members private bool _stopWalking; #endregion Private Members } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MaterialCollection.cs
- PaintEvent.cs
- ObjectContextServiceProvider.cs
- UriTemplateHelpers.cs
- SystemEvents.cs
- CodeIdentifiers.cs
- ItemContainerProviderWrapper.cs
- BuildProviderAppliesToAttribute.cs
- CalculatedColumn.cs
- PropertyTabChangedEvent.cs
- InProcStateClientManager.cs
- Matrix3DValueSerializer.cs
- AsmxEndpointPickerExtension.cs
- ListViewInsertionMark.cs
- SqlTriggerContext.cs
- EncryptedPackage.cs
- WindowsPrincipal.cs
- RegexReplacement.cs
- Logging.cs
- FixedPageProcessor.cs
- GenericPrincipal.cs
- RoleManagerEventArgs.cs
- TextTreeNode.cs
- Path.cs
- SerialPort.cs
- HtmlTableRow.cs
- ListItemCollection.cs
- ContentValidator.cs
- ParagraphVisual.cs
- TableItemStyle.cs
- LicenseProviderAttribute.cs
- ToolStripArrowRenderEventArgs.cs
- TrackingStringDictionary.cs
- JpegBitmapEncoder.cs
- StreamMarshaler.cs
- ActivityAction.cs
- RSAOAEPKeyExchangeFormatter.cs
- FindProgressChangedEventArgs.cs
- TreeIterators.cs
- AnimatedTypeHelpers.cs
- InheritanceAttribute.cs
- ColorConverter.cs
- HandlerWithFactory.cs
- ClientScriptItemCollection.cs
- ByteAnimationBase.cs
- DataListItemEventArgs.cs
- MulticastIPAddressInformationCollection.cs
- MaskedTextBoxTextEditor.cs
- BoolExpression.cs
- LinkButton.cs
- FlowDocumentScrollViewer.cs
- CollectionBase.cs
- WebRequestModuleElement.cs
- XpsLiterals.cs
- DetailsViewUpdateEventArgs.cs
- DebuggerAttributes.cs
- Empty.cs
- User.cs
- Error.cs
- MaskedTextProvider.cs
- XmlSchemaInferenceException.cs
- ComponentResourceKeyConverter.cs
- FileVersion.cs
- ScrollEventArgs.cs
- SqlDataRecord.cs
- KeyGesture.cs
- XNodeNavigator.cs
- Lasso.cs
- DeflateStreamAsyncResult.cs
- FileDialogPermission.cs
- ByteStorage.cs
- TextElementCollection.cs
- WebPartMenuStyle.cs
- EncodingTable.cs
- SocketInformation.cs
- FormViewDeletedEventArgs.cs
- PanelDesigner.cs
- ContentPropertyAttribute.cs
- DbConnectionStringBuilder.cs
- RTLAwareMessageBox.cs
- DatatypeImplementation.cs
- XmlStreamStore.cs
- TypeGeneratedEventArgs.cs
- WSUtilitySpecificationVersion.cs
- DeleteIndexBinder.cs
- TableRow.cs
- OAVariantLib.cs
- SchemaElement.cs
- WizardPanel.cs
- SystemTcpStatistics.cs
- EmptyControlCollection.cs
- PageRanges.cs
- WindowsGrip.cs
- FrameworkElementAutomationPeer.cs
- InvalidProgramException.cs
- TextInfo.cs
- RestClientProxyHandler.cs
- SHA256.cs
- ConfigsHelper.cs
- ClaimComparer.cs