Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Brush.cs / 1305376 / Brush.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.ComponentModel; using Microsoft.Win32; using System.Drawing; using System.Drawing.Internal; using System.Globalization; using System.Security; using System.Security.Permissions; /** * Represent a Brush object */ ////// /// public abstract class Brush : MarshalByRefObject, ICloneable, IDisposable { #if FINALIZATION_WATCH private string allocationSite = Graphics.GetAllocationStack(); #endif // handle to native GDI+ brush object to be used on demand. ////// Classes derrived from this abstract base class define objects used to fill the /// interiors of graphical shapes such as rectangles, ellipses, pies, polygons, and paths. /// ///private IntPtr nativeBrush; /// /// /// When overriden in a derived class, creates /// an exact copy of this public abstract object Clone(); ///. /// /// Sets the native GDI+ brush reference. /// Note: This method is intended to be used by derived classes only! (internal protected doesn't work as in C++). /// protected internal void SetNativeBrush(IntPtr brush) { SecurityPermission permission = new SecurityPermission(SecurityPermissionFlag.UnmanagedCode); permission.Demand(); SetNativeBrushInternal(brush); } internal void SetNativeBrushInternal(IntPtr brush) { Debug.Assert( brush != IntPtr.Zero, "WARNING: Assigning null to the GDI+ native brush object."); Debug.Assert( this.nativeBrush == IntPtr.Zero, "WARNING: Initialized GDI+ native brush object being assigned a new value."); this.nativeBrush = brush; } ////// Gets the GDI+ native object reference. Triggers GDI+ obect initialization. /// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] internal IntPtr NativeBrush { [System.Runtime.TargetedPatchingOptOutAttribute("Performance critical to inline across NGen image boundaries")] get { //Need to comment this line out to allow for checking this.NativePen == IntPtr.Zero. //Debug.Assert(this.nativeBrush != IntPtr.Zero, "this.nativeBrush == null." ); return this.nativeBrush; } } ////// /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ////// Deletes this ///. /// protected virtual void Dispose(bool disposing) { #if FINALIZATION_WATCH if (!disposing && nativeBrush != IntPtr.Zero ) Debug.WriteLine("**********************\nDisposed through finalization:\n" + allocationSite); #endif if (this.nativeBrush != IntPtr.Zero) { try{ #if DEBUG int status = #endif SafeNativeMethods.Gdip.GdipDeleteBrush(new HandleRef(this, this.nativeBrush)); #if DEBUG Debug.Assert(status == SafeNativeMethods.Gdip.Ok, "GDI+ returned an error status: " + status.ToString(CultureInfo.InvariantCulture)); #endif } catch( Exception ex ){ if( ClientUtils.IsSecurityOrCriticalException( ex ) ) { throw; } Debug.Fail( "Exception thrown during Dispose: " + ex.ToString() ); } finally{ this.nativeBrush = IntPtr.Zero; } } } /** * Object cleanup */ /// /// /// ~Brush() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Releases memory allocated for this ///. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.ComponentModel; using Microsoft.Win32; using System.Drawing; using System.Drawing.Internal; using System.Globalization; using System.Security; using System.Security.Permissions; /** * Represent a Brush object */ ////// /// public abstract class Brush : MarshalByRefObject, ICloneable, IDisposable { #if FINALIZATION_WATCH private string allocationSite = Graphics.GetAllocationStack(); #endif // handle to native GDI+ brush object to be used on demand. ////// Classes derrived from this abstract base class define objects used to fill the /// interiors of graphical shapes such as rectangles, ellipses, pies, polygons, and paths. /// ///private IntPtr nativeBrush; /// /// /// When overriden in a derived class, creates /// an exact copy of this public abstract object Clone(); ///. /// /// Sets the native GDI+ brush reference. /// Note: This method is intended to be used by derived classes only! (internal protected doesn't work as in C++). /// protected internal void SetNativeBrush(IntPtr brush) { SecurityPermission permission = new SecurityPermission(SecurityPermissionFlag.UnmanagedCode); permission.Demand(); SetNativeBrushInternal(brush); } internal void SetNativeBrushInternal(IntPtr brush) { Debug.Assert( brush != IntPtr.Zero, "WARNING: Assigning null to the GDI+ native brush object."); Debug.Assert( this.nativeBrush == IntPtr.Zero, "WARNING: Initialized GDI+ native brush object being assigned a new value."); this.nativeBrush = brush; } ////// Gets the GDI+ native object reference. Triggers GDI+ obect initialization. /// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] internal IntPtr NativeBrush { [System.Runtime.TargetedPatchingOptOutAttribute("Performance critical to inline across NGen image boundaries")] get { //Need to comment this line out to allow for checking this.NativePen == IntPtr.Zero. //Debug.Assert(this.nativeBrush != IntPtr.Zero, "this.nativeBrush == null." ); return this.nativeBrush; } } ////// /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ////// Deletes this ///. /// protected virtual void Dispose(bool disposing) { #if FINALIZATION_WATCH if (!disposing && nativeBrush != IntPtr.Zero ) Debug.WriteLine("**********************\nDisposed through finalization:\n" + allocationSite); #endif if (this.nativeBrush != IntPtr.Zero) { try{ #if DEBUG int status = #endif SafeNativeMethods.Gdip.GdipDeleteBrush(new HandleRef(this, this.nativeBrush)); #if DEBUG Debug.Assert(status == SafeNativeMethods.Gdip.Ok, "GDI+ returned an error status: " + status.ToString(CultureInfo.InvariantCulture)); #endif } catch( Exception ex ){ if( ClientUtils.IsSecurityOrCriticalException( ex ) ) { throw; } Debug.Fail( "Exception thrown during Dispose: " + ex.ToString() ); } finally{ this.nativeBrush = IntPtr.Zero; } } } /** * Object cleanup */ /// /// /// ~Brush() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Releases memory allocated for this ///. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Zone.cs
- CapabilitiesRule.cs
- ExtensionSimplifierMarkupObject.cs
- Executor.cs
- TabPage.cs
- BooleanConverter.cs
- CategoryGridEntry.cs
- LabelAutomationPeer.cs
- bindurihelper.cs
- COM2AboutBoxPropertyDescriptor.cs
- MetadataCache.cs
- ReliableOutputSessionChannel.cs
- Convert.cs
- SafeProcessHandle.cs
- safesecurityhelperavalon.cs
- TextEndOfLine.cs
- CategoryGridEntry.cs
- XmlSerializerFactory.cs
- SatelliteContractVersionAttribute.cs
- SystemGatewayIPAddressInformation.cs
- MLangCodePageEncoding.cs
- InheritablePropertyChangeInfo.cs
- PresentationSource.cs
- CompositeCollection.cs
- TextTreeFixupNode.cs
- ChildChangedEventArgs.cs
- PackageRelationshipCollection.cs
- DesignerCapabilities.cs
- ScriptMethodAttribute.cs
- BooleanProjectedSlot.cs
- BindingExpressionUncommonField.cs
- DataGridViewColumnTypePicker.cs
- UnsafeNativeMethods.cs
- RewritingSimplifier.cs
- BuildDependencySet.cs
- TabItemAutomationPeer.cs
- CodeCompiler.cs
- SchemaElementLookUpTable.cs
- OracleConnectionString.cs
- TableRowCollection.cs
- ParenthesizePropertyNameAttribute.cs
- GetPageCompletedEventArgs.cs
- TextModifierScope.cs
- HtmlInputButton.cs
- SubMenuStyleCollection.cs
- RectangleHotSpot.cs
- NavigationWindowAutomationPeer.cs
- PropertyEmitterBase.cs
- HtmlCommandAdapter.cs
- DbMetaDataFactory.cs
- DetailsView.cs
- SpellerHighlightLayer.cs
- ListViewDesigner.cs
- ExpressionBuilderCollection.cs
- WorkItem.cs
- XslException.cs
- ChangeNode.cs
- Point3DCollection.cs
- IndexerNameAttribute.cs
- BinaryConverter.cs
- XmlSchemaSubstitutionGroup.cs
- Misc.cs
- PrintPreviewControl.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- EventLogTraceListener.cs
- Setter.cs
- RawTextInputReport.cs
- ModelUIElement3D.cs
- Random.cs
- NetPipeSection.cs
- SingleAnimationUsingKeyFrames.cs
- ResourcesBuildProvider.cs
- FamilyCollection.cs
- ComponentResourceKeyConverter.cs
- AppDomainManager.cs
- PTManager.cs
- TreeNodeEventArgs.cs
- Configuration.cs
- ListBoxAutomationPeer.cs
- CacheModeConverter.cs
- StringSource.cs
- ImpersonationContext.cs
- DocumentGridPage.cs
- SharedUtils.cs
- MultiView.cs
- ControlAdapter.cs
- XPathBinder.cs
- CodeTypeDeclarationCollection.cs
- CellConstant.cs
- FactoryGenerator.cs
- SamlAssertionKeyIdentifierClause.cs
- CompModSwitches.cs
- SynchronousSendBindingElement.cs
- MessageBodyDescription.cs
- FilterException.cs
- PropertyKey.cs
- RuleProcessor.cs
- ConfigUtil.cs
- BlurEffect.cs
- SQLInt16.cs