Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / tx / System / Transactions / Oletx / CoTaskMemHandle.cs / 1305376 / CoTaskMemHandle.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Transactions.Oletx { using System; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security; internal sealed class CoTaskMemHandle : SafeHandle { // FXCop is complaining because we don't have any callers to the constructor. But they are created by COMInterop when we use them // as "out" parameters to calls to the proxy shim interfaces. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] public CoTaskMemHandle() : base(IntPtr.Zero, true) { } public override bool IsInvalid { get { return IsClosed || this.handle == IntPtr.Zero; } } /* [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] [DllImport("ole32.dll", EntryPoint="CoTaskMemAlloc"), SuppressUnmanagedCodeSecurity] public static extern CoTaskMemHandle Alloc(IntPtr size); */ [DllImport("ole32.dll"), SuppressUnmanagedCodeSecurity, ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] private static extern void CoTaskMemFree(IntPtr ptr); override protected bool ReleaseHandle() { CoTaskMemFree(this.handle); return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Transactions.Oletx { using System; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security; internal sealed class CoTaskMemHandle : SafeHandle { // FXCop is complaining because we don't have any callers to the constructor. But they are created by COMInterop when we use them // as "out" parameters to calls to the proxy shim interfaces. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] public CoTaskMemHandle() : base(IntPtr.Zero, true) { } public override bool IsInvalid { get { return IsClosed || this.handle == IntPtr.Zero; } } /* [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] [DllImport("ole32.dll", EntryPoint="CoTaskMemAlloc"), SuppressUnmanagedCodeSecurity] public static extern CoTaskMemHandle Alloc(IntPtr size); */ [DllImport("ole32.dll"), SuppressUnmanagedCodeSecurity, ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] private static extern void CoTaskMemFree(IntPtr ptr); override protected bool ReleaseHandle() { CoTaskMemFree(this.handle); return true; } } } // 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
- WebPartEventArgs.cs
- SafeRightsManagementSessionHandle.cs
- WebBrowserSiteBase.cs
- ContextMarshalException.cs
- ReadOnlyMetadataCollection.cs
- HttpCookiesSection.cs
- SQLSingleStorage.cs
- ApplicationInfo.cs
- EntitySqlQueryCacheEntry.cs
- OAVariantLib.cs
- ZipIOLocalFileDataDescriptor.cs
- ISessionStateStore.cs
- PropertyExpression.cs
- PerformanceCountersElement.cs
- CodeCatchClauseCollection.cs
- CounterCreationDataCollection.cs
- dbdatarecord.cs
- XmlRawWriter.cs
- XPathAncestorIterator.cs
- Rule.cs
- XmlWhitespace.cs
- ExtractedStateEntry.cs
- ErrorHandler.cs
- StylusPoint.cs
- dataprotectionpermissionattribute.cs
- SafePointer.cs
- ReversePositionQuery.cs
- HttpHandlerActionCollection.cs
- WebControlsSection.cs
- Tokenizer.cs
- VarInfo.cs
- TransportReplyChannelAcceptor.cs
- TrackingCondition.cs
- PointCollection.cs
- UnsafeNativeMethods.cs
- WmlValidatorAdapter.cs
- DefaultPropertyAttribute.cs
- ControlIdConverter.cs
- SHA512.cs
- ClonableStack.cs
- AssociationEndMember.cs
- EventsTab.cs
- OptimizedTemplateContentHelper.cs
- PathTooLongException.cs
- BitmapEffectDrawing.cs
- ExtendedProperty.cs
- SqlUserDefinedTypeAttribute.cs
- HotSpot.cs
- EmptyStringExpandableObjectConverter.cs
- EntityDataSourceDesigner.cs
- OrderingExpression.cs
- MDIControlStrip.cs
- DeferredReference.cs
- HtmlControlPersistable.cs
- XmlSchemaSimpleContentExtension.cs
- RequestResizeEvent.cs
- X509ImageLogo.cs
- DrawListViewItemEventArgs.cs
- DefaultProxySection.cs
- FilteredAttributeCollection.cs
- ListSurrogate.cs
- Action.cs
- SystemInfo.cs
- FileChangesMonitor.cs
- ObjectDataSourceChooseTypePanel.cs
- CustomWebEventKey.cs
- EntryPointNotFoundException.cs
- WebFormDesignerActionService.cs
- _CookieModule.cs
- AssemblyInfo.cs
- DataSetFieldSchema.cs
- SQLRoleProvider.cs
- VariableAction.cs
- CodeLinePragma.cs
- DataGridView.cs
- PropertyToken.cs
- ColumnWidthChangingEvent.cs
- DataRelation.cs
- SmiRecordBuffer.cs
- SafeFreeMibTable.cs
- XmlNamespaceManager.cs
- PrintPreviewControl.cs
- DesignerUtility.cs
- DataServiceContext.cs
- BitmapEffectInput.cs
- VersionValidator.cs
- StaticExtensionConverter.cs
- MailDefinitionBodyFileNameEditor.cs
- DeclaredTypeValidatorAttribute.cs
- OdbcConnectionPoolProviderInfo.cs
- EntityDesignerUtils.cs
- DbUpdateCommandTree.cs
- TreeView.cs
- RegexInterpreter.cs
- AlignmentXValidation.cs
- ThemeDictionaryExtension.cs
- WebAdminConfigurationHelper.cs
- ByteKeyFrameCollection.cs
- EntityDataSourceSelectedEventArgs.cs
- ConfigurationManager.cs