Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / Microsoft / Win32 / SafeHandles / Win32SafeHandles.cs / 1 / Win32SafeHandles.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // Abstract derivations of SafeHandle designed to provide the common // functionality supporting Win32 handles. More specifically, they describe how // an invalid handle looks (for instance, some handles use -1 as an invalid // handle value, others use 0). // // Further derivations of these classes can specialise this even further (e.g. // file or registry handles). // // using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Security.Permissions; using System.Runtime.ConstrainedExecution; namespace Microsoft.Win32.SafeHandles { // Class of safe handle which uses 0 or -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class SafeHandleZeroOrMinusOneIsInvalid : SafeHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected SafeHandleZeroOrMinusOneIsInvalid(bool ownsHandle) : base(IntPtr.Zero, ownsHandle) { } public override bool IsInvalid { get { return handle.IsNull() || handle == new IntPtr(-1); } } } // Class of safe handle which uses only -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class SafeHandleMinusOneIsInvalid : SafeHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected SafeHandleMinusOneIsInvalid(bool ownsHandle) : base(new IntPtr(-1), ownsHandle) { } public override bool IsInvalid { get { return handle == new IntPtr(-1); } } } // Class of critical handle which uses 0 or -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class CriticalHandleZeroOrMinusOneIsInvalid : CriticalHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected CriticalHandleZeroOrMinusOneIsInvalid() : base(IntPtr.Zero) { } public override bool IsInvalid { get { return handle.IsNull() || handle == new IntPtr(-1); } } } // Class of critical handle which uses only -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class CriticalHandleMinusOneIsInvalid : CriticalHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected CriticalHandleMinusOneIsInvalid() : base(new IntPtr(-1)) { } public override bool IsInvalid { get { return handle == new IntPtr(-1); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // Abstract derivations of SafeHandle designed to provide the common // functionality supporting Win32 handles. More specifically, they describe how // an invalid handle looks (for instance, some handles use -1 as an invalid // handle value, others use 0). // // Further derivations of these classes can specialise this even further (e.g. // file or registry handles). // // using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Security.Permissions; using System.Runtime.ConstrainedExecution; namespace Microsoft.Win32.SafeHandles { // Class of safe handle which uses 0 or -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class SafeHandleZeroOrMinusOneIsInvalid : SafeHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected SafeHandleZeroOrMinusOneIsInvalid(bool ownsHandle) : base(IntPtr.Zero, ownsHandle) { } public override bool IsInvalid { get { return handle.IsNull() || handle == new IntPtr(-1); } } } // Class of safe handle which uses only -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class SafeHandleMinusOneIsInvalid : SafeHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected SafeHandleMinusOneIsInvalid(bool ownsHandle) : base(new IntPtr(-1), ownsHandle) { } public override bool IsInvalid { get { return handle == new IntPtr(-1); } } } // Class of critical handle which uses 0 or -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class CriticalHandleZeroOrMinusOneIsInvalid : CriticalHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected CriticalHandleZeroOrMinusOneIsInvalid() : base(IntPtr.Zero) { } public override bool IsInvalid { get { return handle.IsNull() || handle == new IntPtr(-1); } } } // Class of critical handle which uses only -1 as an invalid handle. [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode=true)] [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] public abstract class CriticalHandleMinusOneIsInvalid : CriticalHandle { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] protected CriticalHandleMinusOneIsInvalid() : base(new IntPtr(-1)) { } public override bool IsInvalid { get { return handle == new IntPtr(-1); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GregorianCalendarHelper.cs
- DateTimeConverter.cs
- RowsCopiedEventArgs.cs
- MimeWriter.cs
- ColorBlend.cs
- GridView.cs
- BStrWrapper.cs
- WebPartDisplayMode.cs
- HashLookup.cs
- WebEventTraceProvider.cs
- XmlElementList.cs
- ClientApiGenerator.cs
- RoutedCommand.cs
- SpecialNameAttribute.cs
- GeometryGroup.cs
- NameGenerator.cs
- MaskedTextBox.cs
- WebPartConnectionsCancelVerb.cs
- DesignBindingConverter.cs
- CreateUserWizard.cs
- CompositeTypefaceMetrics.cs
- DirectionalLight.cs
- LogReserveAndAppendState.cs
- WebPartEditVerb.cs
- NetworkStream.cs
- LineBreak.cs
- HtmlLink.cs
- CodeAccessSecurityEngine.cs
- MarkupExtensionSerializer.cs
- PkcsMisc.cs
- CacheMemory.cs
- UserControlBuildProvider.cs
- FixedTextContainer.cs
- Rules.cs
- GridLength.cs
- VectorCollection.cs
- BufferAllocator.cs
- TypeBuilderInstantiation.cs
- QfeChecker.cs
- FontNameEditor.cs
- CommandField.cs
- MsmqTransportElement.cs
- TextChange.cs
- CustomErrorsSectionWrapper.cs
- Queue.cs
- XamlReader.cs
- OleDbErrorCollection.cs
- NameNode.cs
- StrokeNodeEnumerator.cs
- PagesSection.cs
- BlockCollection.cs
- KeyMatchBuilder.cs
- TextClipboardData.cs
- LazyTextWriterCreator.cs
- SourceCollection.cs
- EntityCommand.cs
- MultiSelector.cs
- TemplateInstanceAttribute.cs
- RequiredFieldValidator.cs
- PowerModeChangedEventArgs.cs
- CompressEmulationStream.cs
- SpotLight.cs
- DataAdapter.cs
- XamlTemplateSerializer.cs
- SharedPersonalizationStateInfo.cs
- EnumConverter.cs
- Attachment.cs
- BaseValidatorDesigner.cs
- ClassicBorderDecorator.cs
- Debug.cs
- Attributes.cs
- CornerRadius.cs
- HtmlWindow.cs
- TokenFactoryCredential.cs
- ProviderConnectionPointCollection.cs
- CrossSiteScriptingValidation.cs
- HttpHeaderCollection.cs
- FilteredAttributeCollection.cs
- ComponentFactoryHelpers.cs
- ExternalDataExchangeService.cs
- ReadOnlyCollection.cs
- BamlWriter.cs
- TemplateBindingExtensionConverter.cs
- CacheOutputQuery.cs
- GCHandleCookieTable.cs
- CalendarDateRange.cs
- DataPagerFieldCommandEventArgs.cs
- RegionIterator.cs
- TopClause.cs
- MdiWindowListItemConverter.cs
- _AutoWebProxyScriptWrapper.cs
- TextBoxBase.cs
- FocusWithinProperty.cs
- TextDecorationCollection.cs
- LinqDataSourceDisposeEventArgs.cs
- StylusPointDescription.cs
- SecurityElement.cs
- DataKeyCollection.cs
- TcpChannelHelper.cs
- Point3DAnimation.cs