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 / SafeFileMappingHandle.cs / 1 / SafeFileMappingHandle.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SafeFileMappingHandle ** **Author: David Gutierrez ([....]) ** ** A wrapper for handle to file mappings, returned by ** CreateFileMapping and OpenFileMapping. Used for shared ** 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 SafeFileMappingHandle : SafeHandleZeroOrMinusOneIsInvalid { // Note that CreateFileMapping returns 0 on failure. // Note that you can pass in -1 for the hFile parameter. [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] internal SafeFileMappingHandle() : base(true) {} [DllImport(ExternDll.Kernel32, ExactSpelling=true, SetLastError=true)] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] private static extern bool CloseHandle(IntPtr handle); override protected bool ReleaseHandle() { return CloseHandle(handle); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SafeFileMappingHandle ** **Author: David Gutierrez ([....]) ** ** A wrapper for handle to file mappings, returned by ** CreateFileMapping and OpenFileMapping. Used for shared ** 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 SafeFileMappingHandle : SafeHandleZeroOrMinusOneIsInvalid { // Note that CreateFileMapping returns 0 on failure. // Note that you can pass in -1 for the hFile parameter. [SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)] internal SafeFileMappingHandle() : base(true) {} [DllImport(ExternDll.Kernel32, ExactSpelling=true, SetLastError=true)] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] private static extern bool CloseHandle(IntPtr handle); override protected bool ReleaseHandle() { return CloseHandle(handle); } } } // 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
- ConfigurationStrings.cs
- PropertyDescriptor.cs
- CounterCreationDataCollection.cs
- Solver.cs
- EmptyImpersonationContext.cs
- Number.cs
- Identity.cs
- ObjectSecurity.cs
- XmlSchemaAny.cs
- PointCollection.cs
- CodeSnippetExpression.cs
- Material.cs
- CustomCategoryAttribute.cs
- ProfileSection.cs
- IdnMapping.cs
- ActivityWithResultConverter.cs
- HotSpotCollectionEditor.cs
- StylusPointPropertyUnit.cs
- AccessibleObject.cs
- ExpressionBindings.cs
- xsdvalidator.cs
- DoWorkEventArgs.cs
- _TransmitFileOverlappedAsyncResult.cs
- MimeParameterWriter.cs
- SemanticBasicElement.cs
- PropertyBuilder.cs
- ByeOperation11AsyncResult.cs
- SystemColors.cs
- LogSwitch.cs
- translator.cs
- PerformanceCountersElement.cs
- XmlReaderSettings.cs
- TypedDataSetSchemaImporterExtension.cs
- AuthenticationService.cs
- DefaultBindingPropertyAttribute.cs
- WebPartManagerInternals.cs
- ApplyHostConfigurationBehavior.cs
- SslStreamSecurityUpgradeProvider.cs
- MatrixTransform3D.cs
- GradientBrush.cs
- FileLogRecordHeader.cs
- DocumentsTrace.cs
- DrawingGroupDrawingContext.cs
- StatusBarAutomationPeer.cs
- MainMenu.cs
- XmlSchemaSubstitutionGroup.cs
- TypeConverterHelper.cs
- TraversalRequest.cs
- TemplatedEditableDesignerRegion.cs
- NativeMethods.cs
- XPathScanner.cs
- Set.cs
- MailMessage.cs
- ActionFrame.cs
- SrgsGrammar.cs
- dataobject.cs
- HttpModuleActionCollection.cs
- TextEffectResolver.cs
- _PooledStream.cs
- SafeNativeMethodsCLR.cs
- EventRouteFactory.cs
- UnorderedHashRepartitionStream.cs
- InfoCardXmlSerializer.cs
- BatchStream.cs
- BCLDebug.cs
- AutoFocusStyle.xaml.cs
- BrushMappingModeValidation.cs
- _SafeNetHandles.cs
- XmlStreamStore.cs
- ConnectorEditor.cs
- TheQuery.cs
- CodeNamespaceImportCollection.cs
- InputElement.cs
- IPEndPoint.cs
- DataTableMappingCollection.cs
- FontSourceCollection.cs
- TextDecorationCollection.cs
- ConsoleEntryPoint.cs
- BrowserCapabilitiesCompiler.cs
- HasCopySemanticsAttribute.cs
- Inflater.cs
- SafeArrayRankMismatchException.cs
- CustomAttributeSerializer.cs
- RelationshipConverter.cs
- CompoundFileIOPermission.cs
- AttachInfo.cs
- MsmqInputChannelListener.cs
- AssociationEndMember.cs
- QilIterator.cs
- PropertyInfoSet.cs
- XmlWellformedWriter.cs
- DocumentReferenceCollection.cs
- SharedUtils.cs
- XmlTypeMapping.cs
- ResourceExpressionBuilder.cs
- RangeExpression.cs
- ColorConvertedBitmap.cs
- ReadOnlyTernaryTree.cs
- EntityDataSourceChangedEventArgs.cs
- BidOverLoads.cs