Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Data / System / Data / ProviderBase / WrappedIUnknown.cs / 1 / 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
- SqlDataRecord.cs
- Win32KeyboardDevice.cs
- InstanceKeyView.cs
- CachingHintValidation.cs
- PropertyRef.cs
- XmlNode.cs
- XsltLoader.cs
- ClaimSet.cs
- Menu.cs
- Metafile.cs
- PrimarySelectionAdorner.cs
- QilNode.cs
- DES.cs
- XPathNavigatorReader.cs
- SettingsPropertyNotFoundException.cs
- SocketCache.cs
- TcpAppDomainProtocolHandler.cs
- WorkflowCreationContext.cs
- ScriptResourceDefinition.cs
- WindowsAuthenticationEventArgs.cs
- EntityWithChangeTrackerStrategy.cs
- RawKeyboardInputReport.cs
- WebPartEditorCancelVerb.cs
- WorkBatch.cs
- ScriptBehaviorDescriptor.cs
- TextBoxRenderer.cs
- DBCSCodePageEncoding.cs
- __ComObject.cs
- DynamicEntity.cs
- EditorBrowsableAttribute.cs
- OlePropertyStructs.cs
- DataGridViewTextBoxColumn.cs
- NullableDoubleMinMaxAggregationOperator.cs
- SqlUtils.cs
- OlePropertyStructs.cs
- DataGridViewRowHeaderCell.cs
- DesignerActionTextItem.cs
- DesignTimeDataBinding.cs
- RawStylusInputReport.cs
- ZipIOExtraFieldZip64Element.cs
- ManipulationVelocities.cs
- BooleanProjectedSlot.cs
- XsltArgumentList.cs
- DataGridViewColumnStateChangedEventArgs.cs
- XmlSchemaAnnotation.cs
- PersonalizationState.cs
- DescendantOverDescendantQuery.cs
- ColumnTypeConverter.cs
- ViewManager.cs
- BevelBitmapEffect.cs
- BamlWriter.cs
- wmiutil.cs
- ResourceKey.cs
- FormViewUpdatedEventArgs.cs
- GridViewPageEventArgs.cs
- TransactionScope.cs
- EditorServiceContext.cs
- ToolStripSeparator.cs
- GeometryConverter.cs
- TextFormattingConverter.cs
- ChineseLunisolarCalendar.cs
- LocatorPart.cs
- HttpPostedFile.cs
- EntityModelBuildProvider.cs
- GlyphRunDrawing.cs
- IpcClientChannel.cs
- EventRouteFactory.cs
- EditorPart.cs
- IriParsingElement.cs
- TreeNodeEventArgs.cs
- DeviceContexts.cs
- DetailsViewDeletedEventArgs.cs
- BoundingRectTracker.cs
- PropertyGridCommands.cs
- HighlightComponent.cs
- XmlSignatureProperties.cs
- HtmlControlPersistable.cs
- DesignParameter.cs
- JumpItem.cs
- WhitespaceRule.cs
- SingleResultAttribute.cs
- DispatcherTimer.cs
- PropertyItem.cs
- Viewport3DVisual.cs
- ComplexBindingPropertiesAttribute.cs
- SmiSettersStream.cs
- RegexGroupCollection.cs
- WindowsToolbarItemAsMenuItem.cs
- ApplicationFileCodeDomTreeGenerator.cs
- DetailsViewActionList.cs
- Addressing.cs
- TreeNodeCollection.cs
- PropertyBuilder.cs
- FilteredXmlReader.cs
- SingleResultAttribute.cs
- NativeMethods.cs
- CodeAttachEventStatement.cs
- Helper.cs
- _NestedMultipleAsyncResult.cs
- TabOrder.cs