Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / Microsoft / Win32 / SafeHandles / SafeLocalMemHandle.cs / 1 / SafeLocalMemHandle.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SafeLocalMemHandle ** **Author: David Gutierrez ([....]) ** ** A wrapper for handle to local memory ** ** Date: July 8, 2002 ** ===========================================================*/ using System; using System.Security; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using Microsoft.Win32; using Microsoft.Win32.SafeHandles; using System.Runtime.ConstrainedExecution; namespace Microsoft.Win32.SafeHandles { [HostProtectionAttribute(MayLeakOnAbort = true)] [SuppressUnmanagedCodeSecurityAttribute] internal sealed class SafeLocalMemHandle : SafeHandleZeroOrMinusOneIsInvalid { internal SafeLocalMemHandle() : base(true) {} [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] internal SafeLocalMemHandle(IntPtr existingHandle, bool ownsHandle) : base(ownsHandle) { SetHandle(existingHandle); } [DllImport(ExternDll.Advapi32, CharSet=System.Runtime.InteropServices.CharSet.Auto, SetLastError=true, BestFitMapping=false)] internal static extern unsafe bool ConvertStringSecurityDescriptorToSecurityDescriptor(string StringSecurityDescriptor, int StringSDRevision, out SafeLocalMemHandle pSecurityDescriptor, IntPtr SecurityDescriptorSize); [DllImport(ExternDll.Kernel32)] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] private static extern IntPtr LocalFree(IntPtr hMem); override protected bool ReleaseHandle() { return LocalFree(handle) == IntPtr.Zero; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SafeLocalMemHandle ** **Author: David Gutierrez ([....]) ** ** A wrapper for handle to local memory ** ** Date: July 8, 2002 ** ===========================================================*/ using System; using System.Security; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using Microsoft.Win32; using Microsoft.Win32.SafeHandles; using System.Runtime.ConstrainedExecution; namespace Microsoft.Win32.SafeHandles { [HostProtectionAttribute(MayLeakOnAbort = true)] [SuppressUnmanagedCodeSecurityAttribute] internal sealed class SafeLocalMemHandle : SafeHandleZeroOrMinusOneIsInvalid { internal SafeLocalMemHandle() : base(true) {} [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] internal SafeLocalMemHandle(IntPtr existingHandle, bool ownsHandle) : base(ownsHandle) { SetHandle(existingHandle); } [DllImport(ExternDll.Advapi32, CharSet=System.Runtime.InteropServices.CharSet.Auto, SetLastError=true, BestFitMapping=false)] internal static extern unsafe bool ConvertStringSecurityDescriptorToSecurityDescriptor(string StringSecurityDescriptor, int StringSDRevision, out SafeLocalMemHandle pSecurityDescriptor, IntPtr SecurityDescriptorSize); [DllImport(ExternDll.Kernel32)] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] private static extern IntPtr LocalFree(IntPtr hMem); override protected bool ReleaseHandle() { return LocalFree(handle) == IntPtr.Zero; } } } // 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
- ThemeableAttribute.cs
- List.cs
- UserControl.cs
- MatrixCamera.cs
- PopupRootAutomationPeer.cs
- ToolboxBitmapAttribute.cs
- RecordsAffectedEventArgs.cs
- RemoveStoryboard.cs
- TableLayoutStyle.cs
- EmptyElement.cs
- keycontainerpermission.cs
- CqlErrorHelper.cs
- XmlQualifiedName.cs
- RtfToXamlLexer.cs
- ObjectViewEntityCollectionData.cs
- ValueType.cs
- AliasedExpr.cs
- CalculatedColumn.cs
- TextSegment.cs
- XmlSchemaSimpleContentExtension.cs
- ExpressionEditorAttribute.cs
- ValidatorCompatibilityHelper.cs
- LongCountAggregationOperator.cs
- FixedSOMPageConstructor.cs
- InputQueueChannelAcceptor.cs
- BitSet.cs
- ActivityPropertyReference.cs
- XNodeNavigator.cs
- NullableDecimalAverageAggregationOperator.cs
- SqlRowUpdatedEvent.cs
- TrackBarRenderer.cs
- IFlowDocumentViewer.cs
- CodeExpressionStatement.cs
- PathSegmentCollection.cs
- FacetChecker.cs
- DesignerUtils.cs
- SerialPort.cs
- EditorPartCollection.cs
- XmlDocumentType.cs
- KnownIds.cs
- HuffModule.cs
- PropertyTab.cs
- SkewTransform.cs
- ComponentGlyph.cs
- XmlDocument.cs
- GridViewRowCollection.cs
- ObjectListSelectEventArgs.cs
- ServiceXNameTypeConverter.cs
- HostedTransportConfigurationBase.cs
- RoleServiceManager.cs
- ImageField.cs
- ObjectParameter.cs
- TypeListConverter.cs
- PackWebRequest.cs
- WeakReferenceEnumerator.cs
- ObjectDataSourceDisposingEventArgs.cs
- AutomationEvent.cs
- DatatypeImplementation.cs
- OpenTypeCommon.cs
- Schedule.cs
- MarkupWriter.cs
- mansign.cs
- CustomAttribute.cs
- ErrorProvider.cs
- AsyncOperationManager.cs
- QueuedDeliveryRequirementsMode.cs
- LinqDataSource.cs
- StyleModeStack.cs
- SmtpReplyReaderFactory.cs
- AttributeTable.cs
- XamlToRtfWriter.cs
- TypeElement.cs
- QuaternionAnimationBase.cs
- PointCollection.cs
- WebBrowserNavigatingEventHandler.cs
- QilFunction.cs
- ListBoxItemWrapperAutomationPeer.cs
- VisualBrush.cs
- HebrewNumber.cs
- GeometryHitTestParameters.cs
- UserMapPath.cs
- ChildTable.cs
- FragmentQuery.cs
- WinFormsUtils.cs
- _AutoWebProxyScriptEngine.cs
- HtmlElementCollection.cs
- _HTTPDateParse.cs
- QuaternionRotation3D.cs
- ClassImporter.cs
- ConnectionStringsExpressionBuilder.cs
- validation.cs
- DiagnosticsElement.cs
- MarkupCompiler.cs
- DBCommand.cs
- ProviderCollection.cs
- MsmqEncryptionAlgorithm.cs
- Propagator.JoinPropagator.cs
- SecurityPolicySection.cs
- SmtpSection.cs
- DeviceContexts.cs