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
- XmlSequenceWriter.cs
- ProxyGenerator.cs
- NumberSubstitution.cs
- InvalidAsynchronousStateException.cs
- CodeSubDirectoriesCollection.cs
- ExtenderHelpers.cs
- XmlQueryType.cs
- PrivateFontCollection.cs
- ServiceObjectContainer.cs
- RowType.cs
- X509AsymmetricSecurityKey.cs
- SqlNotificationEventArgs.cs
- ComboBoxItem.cs
- SystemUnicastIPAddressInformation.cs
- HtmlCommandAdapter.cs
- AutomationPeer.cs
- UserPreferenceChangingEventArgs.cs
- JoinCqlBlock.cs
- ToolTipAutomationPeer.cs
- QilPatternFactory.cs
- UpdatePanel.cs
- XPathMessageFilter.cs
- GetWinFXPath.cs
- CustomWebEventKey.cs
- Int32KeyFrameCollection.cs
- SqlBuffer.cs
- OdbcInfoMessageEvent.cs
- Type.cs
- RegexReplacement.cs
- ProxyHelper.cs
- ExceptionHandlerDesigner.cs
- SelectionEditingBehavior.cs
- ActivityCodeGenerator.cs
- SqlGatherConsumedAliases.cs
- CreateUserWizardStep.cs
- ArgumentException.cs
- DataServiceOperationContext.cs
- ReaderWriterLock.cs
- ScriptResourceInfo.cs
- AssociationSetEnd.cs
- TableLayoutStyle.cs
- SafeProcessHandle.cs
- HwndStylusInputProvider.cs
- _KerberosClient.cs
- TypeLibConverter.cs
- HtmlControl.cs
- FontFamily.cs
- Events.cs
- AuthenticationService.cs
- Int64Converter.cs
- ObjectViewListener.cs
- ResourceDescriptionAttribute.cs
- SecurityTokenTypes.cs
- Duration.cs
- ConstructorArgumentAttribute.cs
- SqlClientFactory.cs
- XmlWriterSettings.cs
- CodeStatementCollection.cs
- ToolboxItemSnapLineBehavior.cs
- WebConfigurationHost.cs
- PackagePart.cs
- BackgroundFormatInfo.cs
- WebPartPersonalization.cs
- InternalControlCollection.cs
- Win32Exception.cs
- CollectionContainer.cs
- OleCmdHelper.cs
- Mapping.cs
- StateDesigner.cs
- SplineQuaternionKeyFrame.cs
- PtsCache.cs
- PropagatorResult.cs
- ContactManager.cs
- RewritingPass.cs
- DataGridRowsPresenter.cs
- CapabilitiesPattern.cs
- XamlWriter.cs
- SystemColors.cs
- ContravarianceAdapter.cs
- QuaternionRotation3D.cs
- EnumerationRangeValidationUtil.cs
- ButtonDesigner.cs
- PrivilegedConfigurationManager.cs
- BitmapFrame.cs
- XmlValueConverter.cs
- NumericUpDownAccelerationCollection.cs
- Vector3D.cs
- httpstaticobjectscollection.cs
- SHA512Managed.cs
- DesignerFrame.cs
- ConstNode.cs
- ArgumentElement.cs
- BindingContext.cs
- IsolatedStorageFileStream.cs
- SpeechSynthesizer.cs
- SqlProcedureAttribute.cs
- MarshalDirectiveException.cs
- MessageDescriptionCollection.cs
- RichTextBoxAutomationPeer.cs
- Enum.cs