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
- DynamicQueryStringParameter.cs
- PerformanceCountersElement.cs
- ConversionContext.cs
- MetadataCacheItem.cs
- DataTableClearEvent.cs
- PreservationFileWriter.cs
- ComMethodElementCollection.cs
- ProgressBarRenderer.cs
- invalidudtexception.cs
- TreeNodeCollectionEditorDialog.cs
- RouteItem.cs
- TreePrinter.cs
- Crypto.cs
- BitmapMetadataEnumerator.cs
- KeyValueConfigurationElement.cs
- HWStack.cs
- TagNameToTypeMapper.cs
- SmiTypedGetterSetter.cs
- ClientSettingsProvider.cs
- AuthorizationRule.cs
- SqlDataSourceConnectionPanel.cs
- ISSmlParser.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- SoapSchemaMember.cs
- ComponentCommands.cs
- ComponentEditorPage.cs
- ExpressionBinding.cs
- OwnerDrawPropertyBag.cs
- DocumentPage.cs
- EventDescriptor.cs
- TraceSwitch.cs
- XmlSchemas.cs
- DataGridViewRowCollection.cs
- GridViewRowCollection.cs
- MeasureData.cs
- OleDbCommandBuilder.cs
- TextServicesPropertyRanges.cs
- CTreeGenerator.cs
- Serializer.cs
- diagnosticsswitches.cs
- EllipseGeometry.cs
- ModuleBuilder.cs
- SourceFileBuildProvider.cs
- FromRequest.cs
- PropertyInfo.cs
- ToolStripDropDownMenu.cs
- System.Data_BID.cs
- TargetParameterCountException.cs
- ListDesigner.cs
- DrawingVisualDrawingContext.cs
- ClientRuntimeConfig.cs
- ComponentEditorForm.cs
- HitTestFilterBehavior.cs
- Substitution.cs
- ISAPIRuntime.cs
- EnumerableRowCollectionExtensions.cs
- Environment.cs
- MediaElement.cs
- OpCellTreeNode.cs
- UserInitiatedNavigationPermission.cs
- DerivedKeyCachingSecurityTokenSerializer.cs
- SafeCloseHandleCritical.cs
- DomainUpDown.cs
- WebDescriptionAttribute.cs
- ExclusiveNamedPipeTransportManager.cs
- InputLanguageCollection.cs
- securitycriticaldataformultiplegetandset.cs
- _WinHttpWebProxyDataBuilder.cs
- DataGridViewRowHeaderCell.cs
- TreeNodeStyle.cs
- ValueTypeFixupInfo.cs
- FtpCachePolicyElement.cs
- ExtensionWindowResizeGrip.cs
- CapabilitiesState.cs
- UserControlCodeDomTreeGenerator.cs
- ChannelManager.cs
- contentDescriptor.cs
- SqlProfileProvider.cs
- DataRowChangeEvent.cs
- WebPartMinimizeVerb.cs
- Permission.cs
- HttpConfigurationSystem.cs
- ApplicationFileParser.cs
- CompleteWizardStep.cs
- EventLogPermissionEntryCollection.cs
- MultiPropertyDescriptorGridEntry.cs
- COM2FontConverter.cs
- AlphabeticalEnumConverter.cs
- DispatcherSynchronizationContext.cs
- BitmapEffect.cs
- Publisher.cs
- ReadOnlyPropertyMetadata.cs
- RegionData.cs
- CookieParameter.cs
- SqlGatherConsumedAliases.cs
- SimpleApplicationHost.cs
- FullTrustAssemblyCollection.cs
- ProfileSettings.cs
- BitStream.cs
- FormsAuthenticationEventArgs.cs