Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / PtsHost / UnmanagedHandle.cs / 1305600 / UnmanagedHandle.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: UnmanagedHandle.cs // // Description: Definition for Unmanaged Handle. Provides identity (handle), // which can be used in unmanaged world. // // History: // 05/02/2003 : [....] - moving from Avalon branch. // //--------------------------------------------------------------------------- using System; namespace MS.Internal.PtsHost { ////// Provides identity (handle), which can be used in unmanaged world. /// If object is passed into unmanaged world, and there is a need to identify /// that object later on, its class should inherit from UnmanagedHandle. /// internal class UnmanagedHandle : IDisposable { ////// Constructor. Used when object derives from UnmanagedHandle. /// /// /// PTS context /// protected UnmanagedHandle(PtsContext ptsContext) { _ptsContext = ptsContext; _handle = ptsContext.CreateHandle(this); } ////// Dispose the object and release handle. /// public virtual void Dispose() { try { _ptsContext.ReleaseHandle(_handle); } finally { _handle = IntPtr.Zero; } GC.SuppressFinalize(this); } ////// Handle of an object. /// internal IntPtr Handle { get { return _handle; } } private IntPtr _handle; ////// PtsContext that is the owner of the handle. /// It is required to store it here for Dispose. When Dispose is called /// it is not always possible to get instance of PtsContext that /// has been used to create this handle. /// internal PtsContext PtsContext { get { return _ptsContext; } } private readonly PtsContext _ptsContext; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: UnmanagedHandle.cs // // Description: Definition for Unmanaged Handle. Provides identity (handle), // which can be used in unmanaged world. // // History: // 05/02/2003 : [....] - moving from Avalon branch. // //--------------------------------------------------------------------------- using System; namespace MS.Internal.PtsHost { ////// Provides identity (handle), which can be used in unmanaged world. /// If object is passed into unmanaged world, and there is a need to identify /// that object later on, its class should inherit from UnmanagedHandle. /// internal class UnmanagedHandle : IDisposable { ////// Constructor. Used when object derives from UnmanagedHandle. /// /// /// PTS context /// protected UnmanagedHandle(PtsContext ptsContext) { _ptsContext = ptsContext; _handle = ptsContext.CreateHandle(this); } ////// Dispose the object and release handle. /// public virtual void Dispose() { try { _ptsContext.ReleaseHandle(_handle); } finally { _handle = IntPtr.Zero; } GC.SuppressFinalize(this); } ////// Handle of an object. /// internal IntPtr Handle { get { return _handle; } } private IntPtr _handle; ////// PtsContext that is the owner of the handle. /// It is required to store it here for Dispose. When Dispose is called /// it is not always possible to get instance of PtsContext that /// has been used to create this handle. /// internal PtsContext PtsContext { get { return _ptsContext; } } private readonly PtsContext _ptsContext; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SubstitutionList.cs
- SqlSelectStatement.cs
- Operand.cs
- XmlIlVisitor.cs
- AssemblyInfo.cs
- TraceSwitch.cs
- TemplatePropertyEntry.cs
- DomainUpDown.cs
- XmlDeclaration.cs
- AssemblyName.cs
- MbpInfo.cs
- RenderDataDrawingContext.cs
- ListItemCollection.cs
- X509CertificateInitiatorServiceCredential.cs
- MobileCategoryAttribute.cs
- DesignSurfaceCollection.cs
- FormsAuthenticationTicket.cs
- WorkflowServiceHostFactory.cs
- IgnoreFlushAndCloseStream.cs
- LinkClickEvent.cs
- MultiAsyncResult.cs
- ImportOptions.cs
- ObjectMemberMapping.cs
- Util.cs
- HierarchicalDataBoundControlAdapter.cs
- DefaultShape.cs
- TrailingSpaceComparer.cs
- DesignSurfaceEvent.cs
- XPathSelectionIterator.cs
- CharacterString.cs
- TimeoutTimer.cs
- ToolStripDropDownButton.cs
- TileModeValidation.cs
- XpsFilter.cs
- ProcessThreadCollection.cs
- ToolStripRenderEventArgs.cs
- SafeNativeMethods.cs
- _SafeNetHandles.cs
- HttpHandlerAction.cs
- TrackingCondition.cs
- ToolboxComponentsCreatedEventArgs.cs
- PhonemeEventArgs.cs
- PageSetupDialog.cs
- TextParaClient.cs
- Privilege.cs
- HierarchicalDataBoundControl.cs
- CqlIdentifiers.cs
- _IPv4Address.cs
- EpmContentSerializer.cs
- CurrencyWrapper.cs
- SizeValueSerializer.cs
- x509store.cs
- BigInt.cs
- VScrollProperties.cs
- UserCancellationException.cs
- WCFBuildProvider.cs
- AnnotationDocumentPaginator.cs
- ColumnReorderedEventArgs.cs
- LineServicesRun.cs
- QilInvokeEarlyBound.cs
- ScrollItemProviderWrapper.cs
- InternalBufferManager.cs
- ListItemCollection.cs
- UnaryNode.cs
- FixedSOMElement.cs
- TrackPoint.cs
- RawStylusInputCustomData.cs
- SafeJobHandle.cs
- SelectionProcessor.cs
- DataGridViewColumnHeaderCell.cs
- ThreadSafeList.cs
- BaseParser.cs
- DragDropHelper.cs
- FSWPathEditor.cs
- DataBindingExpressionBuilder.cs
- Model3DGroup.cs
- DoubleLinkList.cs
- ToolStripRenderer.cs
- SortedDictionary.cs
- PauseStoryboard.cs
- OdbcConnectionFactory.cs
- EntityDataSourceValidationException.cs
- ProvideValueServiceProvider.cs
- MarginCollapsingState.cs
- NestedContainer.cs
- Composition.cs
- MetaColumn.cs
- UIntPtr.cs
- RecognizedPhrase.cs
- CompiledXpathExpr.cs
- SkinBuilder.cs
- SqlCacheDependencyDatabase.cs
- SurrogateSelector.cs
- BridgeDataRecord.cs
- MailDefinition.cs
- AxisAngleRotation3D.cs
- HijriCalendar.cs
- CatalogPartCollection.cs
- Memoizer.cs
- FileDataSourceCache.cs