Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / ProviderBase / WrappedIUnknown.cs / 1305376 / WrappedIUnknown.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.ProviderBase { using System; using System.Data.Common; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Threading; // We wrap the interface as a native IUnknown IntPtr so that every // thread that creates a connection will fake the correct context when // in transactions, otherwise everything is marshalled. We do this // for two reasons: first for the connection pooler, this is a significant // performance gain, second for the OLE DB provider, it doesn't marshal. internal class WrappedIUnknown : SafeHandle { internal WrappedIUnknown() : base(IntPtr.Zero, true) { } internal WrappedIUnknown(object unknown) : this() { if (null != unknown) { RuntimeHelpers.PrepareConstrainedRegions(); try {} finally { base.handle = Marshal.GetIUnknownForObject(unknown); // } } } public override bool IsInvalid { get { return (IntPtr.Zero == base.handle); } } internal object ComWrapper() { // NOTE: Method, instead of property, to avoid being evaluated at // runtime in the debugger. object value = null; bool mustRelease = false; RuntimeHelpers.PrepareConstrainedRegions(); try { DangerousAddRef(ref mustRelease); IntPtr handle = DangerousGetHandle(); value = System.Runtime.Remoting.Services.EnterpriseServicesHelper.WrapIUnknownWithComObject(handle); } finally { if (mustRelease) { DangerousRelease(); } } return value; } override protected bool ReleaseHandle() { // NOTE: The SafeHandle class guarantees this will be called exactly once. IntPtr ptr = base.handle; base.handle = IntPtr.Zero; if (IntPtr.Zero != ptr) { Marshal.Release(ptr); } return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.ProviderBase { using System; using System.Data.Common; using System.Runtime.CompilerServices; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Threading; // We wrap the interface as a native IUnknown IntPtr so that every // thread that creates a connection will fake the correct context when // in transactions, otherwise everything is marshalled. We do this // for two reasons: first for the connection pooler, this is a significant // performance gain, second for the OLE DB provider, it doesn't marshal. internal class WrappedIUnknown : SafeHandle { internal WrappedIUnknown() : base(IntPtr.Zero, true) { } internal WrappedIUnknown(object unknown) : this() { if (null != unknown) { RuntimeHelpers.PrepareConstrainedRegions(); try {} finally { base.handle = Marshal.GetIUnknownForObject(unknown); // } } } public override bool IsInvalid { get { return (IntPtr.Zero == base.handle); } } internal object ComWrapper() { // NOTE: Method, instead of property, to avoid being evaluated at // runtime in the debugger. object value = null; bool mustRelease = false; RuntimeHelpers.PrepareConstrainedRegions(); try { DangerousAddRef(ref mustRelease); IntPtr handle = DangerousGetHandle(); value = System.Runtime.Remoting.Services.EnterpriseServicesHelper.WrapIUnknownWithComObject(handle); } finally { if (mustRelease) { DangerousRelease(); } } return value; } override protected bool ReleaseHandle() { // NOTE: The SafeHandle class guarantees this will be called exactly once. IntPtr ptr = base.handle; base.handle = IntPtr.Zero; if (IntPtr.Zero != ptr) { Marshal.Release(ptr); } 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
- CopyNamespacesAction.cs
- sortedlist.cs
- BigIntegerStorage.cs
- COM2IDispatchConverter.cs
- InputLanguageCollection.cs
- CrossContextChannel.cs
- TextEndOfSegment.cs
- SocketManager.cs
- DbReferenceCollection.cs
- PreApplicationStartMethodAttribute.cs
- SystemTcpStatistics.cs
- ZoomingMessageFilter.cs
- XmlWellformedWriterHelpers.cs
- TemplatedAdorner.cs
- WindowsGraphics2.cs
- PackageRelationshipCollection.cs
- PseudoWebRequest.cs
- RepeaterItem.cs
- FormatterConverter.cs
- PageStatePersister.cs
- ListBindableAttribute.cs
- XmlWhitespace.cs
- SafeRightsManagementHandle.cs
- DataSetMappper.cs
- CoordinationService.cs
- HealthMonitoringSectionHelper.cs
- PerformanceCounterCategory.cs
- CompilerGlobalScopeAttribute.cs
- PreviewPrintController.cs
- DictionaryItemsCollection.cs
- SecuritySessionSecurityTokenProvider.cs
- SqlDataSourceView.cs
- ImageCodecInfo.cs
- Win32Interop.cs
- TimeSpan.cs
- Size.cs
- Drawing.cs
- ContentType.cs
- PartialCachingControl.cs
- XmlMembersMapping.cs
- PropertyDescriptorCollection.cs
- Latin1Encoding.cs
- BuilderElements.cs
- InvariantComparer.cs
- ChtmlLinkAdapter.cs
- HostingPreferredMapPath.cs
- AnnotationHelper.cs
- SoapSchemaExporter.cs
- ProjectionRewriter.cs
- ColorConverter.cs
- CheckBox.cs
- AbstractSvcMapFileLoader.cs
- InnerItemCollectionView.cs
- ReadOnlyCollectionBuilder.cs
- SrgsElementFactory.cs
- UrlAuthorizationModule.cs
- KernelTypeValidation.cs
- DataGridDetailsPresenter.cs
- DriveInfo.cs
- AppDomainFactory.cs
- UInt16.cs
- IPHostEntry.cs
- lengthconverter.cs
- ProfileManager.cs
- CheckBoxFlatAdapter.cs
- AstTree.cs
- CompModSwitches.cs
- StorageFunctionMapping.cs
- XmlFormatExtensionAttribute.cs
- WebColorConverter.cs
- EntityCommandDefinition.cs
- DrawingContextDrawingContextWalker.cs
- SqlDataSourceStatusEventArgs.cs
- DataPointer.cs
- SymbolDocumentInfo.cs
- SubpageParaClient.cs
- ProjectionCamera.cs
- DynamicValueConverter.cs
- MergeFilterQuery.cs
- ReceiveActivity.cs
- FormsAuthenticationCredentials.cs
- ListItemConverter.cs
- SettingsSavedEventArgs.cs
- DbUpdateCommandTree.cs
- SignedXml.cs
- SqlFactory.cs
- _BufferOffsetSize.cs
- HtmlInputImage.cs
- EpmContentDeSerializer.cs
- TailCallAnalyzer.cs
- ImageSourceConverter.cs
- ZipIORawDataFileBlock.cs
- AlternateViewCollection.cs
- FileClassifier.cs
- ToolboxControl.cs
- HuffModule.cs
- InternalBase.cs
- Evaluator.cs
- PropertyValueChangedEvent.cs
- HttpGetClientProtocol.cs