Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowManager.cs
- ButtonColumn.cs
- DataStorage.cs
- ReturnType.cs
- PixelShader.cs
- DBCSCodePageEncoding.cs
- BuildProvider.cs
- RequestCacheManager.cs
- SweepDirectionValidation.cs
- WeakReferenceList.cs
- FrameworkContentElement.cs
- DataSetMappper.cs
- Error.cs
- XmlNodeReader.cs
- DependencyObjectValidator.cs
- HtmlInputButton.cs
- SchemaElementLookUpTable.cs
- XmlSchemaCompilationSettings.cs
- ForwardPositionQuery.cs
- SymmetricCryptoHandle.cs
- XPathConvert.cs
- Rect.cs
- TabControlCancelEvent.cs
- linebase.cs
- ConfigXmlWhitespace.cs
- NavigationFailedEventArgs.cs
- WindowsAuthenticationModule.cs
- MachinePropertyVariants.cs
- QueryPageSettingsEventArgs.cs
- FloatSumAggregationOperator.cs
- TrackingServices.cs
- StyleTypedPropertyAttribute.cs
- HttpModule.cs
- ListBindingHelper.cs
- DataContractSerializerSection.cs
- ControlCachePolicy.cs
- Cursor.cs
- DefaultValueAttribute.cs
- TabControlAutomationPeer.cs
- ContentDisposition.cs
- ComboBoxHelper.cs
- UriSectionData.cs
- ContainerParaClient.cs
- TypeDescriptionProvider.cs
- IndexerNameAttribute.cs
- ScriptBehaviorDescriptor.cs
- HttpListenerException.cs
- ToolStripRenderEventArgs.cs
- TextBoxBase.cs
- MdiWindowListStrip.cs
- ComponentTray.cs
- _ListenerResponseStream.cs
- XmlTextAttribute.cs
- ObjectSet.cs
- FileVersion.cs
- GridViewDeleteEventArgs.cs
- HttpRuntimeSection.cs
- InstanceKeyCollisionException.cs
- TransactionFlowProperty.cs
- SoapFormatterSinks.cs
- HttpFileCollection.cs
- SspiSecurityToken.cs
- DataGridViewTopRowAccessibleObject.cs
- EventItfInfo.cs
- EmptyTextWriter.cs
- CollectionBuilder.cs
- XmlBindingWorker.cs
- Trace.cs
- ParameterRetriever.cs
- EventLevel.cs
- TemplateComponentConnector.cs
- TreeIterators.cs
- PrinterSettings.cs
- RootNamespaceAttribute.cs
- BuildManagerHost.cs
- WebPartTracker.cs
- DesignerDataParameter.cs
- ArgumentValidation.cs
- XmlSchemaSubstitutionGroup.cs
- DragEvent.cs
- XPathScanner.cs
- DrawItemEvent.cs
- ProtocolsConfigurationHandler.cs
- DataServiceResponse.cs
- MatrixStack.cs
- NotifyIcon.cs
- SoapClientMessage.cs
- DeviceContext.cs
- AttachedPropertyMethodSelector.cs
- ProtectedConfigurationSection.cs
- ValidationSummaryDesigner.cs
- RoleManagerEventArgs.cs
- SafeFileMappingHandle.cs
- SmtpException.cs
- SessionPageStateSection.cs
- DataGridRowAutomationPeer.cs
- KeyedCollection.cs
- BridgeDataRecord.cs
- HtmlWindowCollection.cs
- ValidationErrorEventArgs.cs