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
- RightsManagementInformation.cs
- LoginUtil.cs
- WebPartUtil.cs
- ClientTarget.cs
- UnauthorizedWebPart.cs
- TextProviderWrapper.cs
- DataGridCommandEventArgs.cs
- BooleanAnimationBase.cs
- SqlConnectionFactory.cs
- MaxMessageSizeStream.cs
- Calendar.cs
- XNodeNavigator.cs
- WSSecurityTokenSerializer.cs
- Publisher.cs
- CodeGenHelper.cs
- TimelineClockCollection.cs
- XmlBoundElement.cs
- PositiveTimeSpanValidatorAttribute.cs
- Expressions.cs
- VirtualPathUtility.cs
- EdmSchemaAttribute.cs
- XPathDocumentBuilder.cs
- DefaultValueTypeConverter.cs
- ClientType.cs
- DetailsViewDeleteEventArgs.cs
- DragStartedEventArgs.cs
- MaxValueConverter.cs
- XpsColorContext.cs
- LightweightEntityWrapper.cs
- GradientBrush.cs
- PropertyDescriptorCollection.cs
- ApplicationDirectory.cs
- SupportedAddressingMode.cs
- StringValidator.cs
- TreeIterators.cs
- IteratorAsyncResult.cs
- DrawingImage.cs
- ToolStripMenuItem.cs
- SQLMembershipProvider.cs
- DataGridViewCheckBoxColumn.cs
- ColumnMapProcessor.cs
- ExpressionPrefixAttribute.cs
- RequestDescription.cs
- InstanceDataCollection.cs
- Pen.cs
- Semaphore.cs
- ControlEvent.cs
- recordstate.cs
- VersionedStreamOwner.cs
- SerializableAttribute.cs
- HtmlInputButton.cs
- CompositeFontInfo.cs
- DataGridViewSelectedCellCollection.cs
- ConfigurationFileMap.cs
- ReflectTypeDescriptionProvider.cs
- RegisterInfo.cs
- BitmapScalingModeValidation.cs
- httpserverutility.cs
- ListComponentEditorPage.cs
- DataViewManager.cs
- StatusBarPanel.cs
- ReachDocumentSequenceSerializerAsync.cs
- SerializerWriterEventHandlers.cs
- WpfPayload.cs
- ReliabilityContractAttribute.cs
- CodeChecksumPragma.cs
- WebZone.cs
- DesignerVerbCollection.cs
- PauseStoryboard.cs
- PointUtil.cs
- BindingExpressionBase.cs
- OracleCommandBuilder.cs
- XMLSchema.cs
- DataGridToolTip.cs
- IDReferencePropertyAttribute.cs
- Attachment.cs
- RadioButtonPopupAdapter.cs
- ConnectionInterfaceCollection.cs
- MimeParameters.cs
- PropertyValueChangedEvent.cs
- ObjectContextServiceProvider.cs
- SqlInternalConnection.cs
- BufferBuilder.cs
- GeneratedCodeAttribute.cs
- TypographyProperties.cs
- Help.cs
- DesigntimeLicenseContextSerializer.cs
- SqlUtils.cs
- PasswordBoxAutomationPeer.cs
- HttpListenerPrefixCollection.cs
- CompositionTarget.cs
- DataGridColumnHeaderAutomationPeer.cs
- ClientCredentials.cs
- LinkLabel.cs
- PagedDataSource.cs
- ClientUrlResolverWrapper.cs
- BaseTemplateBuildProvider.cs
- AttachmentCollection.cs
- DataGridColumnHeaderAutomationPeer.cs
- WebPartRestoreVerb.cs