Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- UnsafeNativeMethods.cs
- TextTreeText.cs
- DataBoundLiteralControl.cs
- SortQuery.cs
- ItemsControl.cs
- Perspective.cs
- KeyedHashAlgorithm.cs
- SafeRegistryHandle.cs
- MeasurementDCInfo.cs
- EntityCommandDefinition.cs
- OutputCacheModule.cs
- MarginsConverter.cs
- SelectedPathEditor.cs
- ErrorWebPart.cs
- CmsInterop.cs
- IArgumentProvider.cs
- VisualTreeHelper.cs
- CopyOnWriteList.cs
- SQLBytesStorage.cs
- ApplicationFileCodeDomTreeGenerator.cs
- LinearQuaternionKeyFrame.cs
- DataSourceViewSchemaConverter.cs
- Variant.cs
- KeyTimeConverter.cs
- DeflateInput.cs
- OrderingQueryOperator.cs
- XmlQueryContext.cs
- UIElement3DAutomationPeer.cs
- ProgressBarAutomationPeer.cs
- SessionStateModule.cs
- MouseOverProperty.cs
- AddInBase.cs
- MouseActionConverter.cs
- DataService.cs
- Stackframe.cs
- BindingMemberInfo.cs
- Setter.cs
- ExpressionBuilder.cs
- dbdatarecord.cs
- DeviceContext.cs
- DataGridViewCheckBoxColumn.cs
- HtmlSelect.cs
- RemotingService.cs
- KnownTypeAttribute.cs
- BindingBase.cs
- QueryCacheEntry.cs
- ItemChangedEventArgs.cs
- TextSelectionHighlightLayer.cs
- OneOfTypeConst.cs
- TextTrailingCharacterEllipsis.cs
- TextBlock.cs
- xmlfixedPageInfo.cs
- PenLineCapValidation.cs
- ReturnValue.cs
- UserControlAutomationPeer.cs
- DisplayMemberTemplateSelector.cs
- XmlQualifiedName.cs
- IndexedString.cs
- ClientCultureInfo.cs
- Base64Encoding.cs
- HtmlInputFile.cs
- EditorAttributeInfo.cs
- DbParameterCollection.cs
- InvariantComparer.cs
- MimePart.cs
- SettingsPropertyIsReadOnlyException.cs
- cookie.cs
- CultureTableRecord.cs
- DecoderExceptionFallback.cs
- StoreContentChangedEventArgs.cs
- ConnectionStringSettingsCollection.cs
- ColumnBinding.cs
- ListControlDataBindingHandler.cs
- DataGridViewCheckBoxColumn.cs
- Substitution.cs
- XmlBindingWorker.cs
- StrokeNodeOperations.cs
- StaticResourceExtension.cs
- ImageIndexConverter.cs
- SelectorAutomationPeer.cs
- DefaultHttpHandler.cs
- WindowsListViewGroupHelper.cs
- WorkerRequest.cs
- WinEventHandler.cs
- CompositeCollection.cs
- TableItemStyle.cs
- FilterQueryOptionExpression.cs
- DbConnectionPoolIdentity.cs
- DefaultAsyncDataDispatcher.cs
- ExpandSegment.cs
- RectangleGeometry.cs
- TrustSection.cs
- BaseInfoTable.cs
- SecurityTokenSerializer.cs
- ExpressionHelper.cs
- SectionUpdates.cs
- DrawingCollection.cs
- LinqDataSourceEditData.cs
- CodeArrayCreateExpression.cs
- DecimalConverter.cs