Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / UIAutomation / UIAutomationClient / MS / Internal / Automation / SafeHandles.cs / 1 / SafeHandles.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Various SafeHandles used by UIA // //--------------------------------------------------------------------------- using System; using System.Runtime.InteropServices; using System.Windows.Automation; using System.Windows.Automation.Provider; // PRESHARP: In order to avoid generating warnings about unkown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 namespace MS.Internal.Automation { internal sealed class SafeNodeHandle : SafeHandle { // Called by P/Invoke when returning SafeHandles // (Also used by UiaCoreApi to create invalid handles.) internal SafeNodeHandle() : base(IntPtr.Zero, true) { } // No need to provide a finalizer - SafeHandle's critical finalizer will // call ReleaseHandle for you. public override bool IsInvalid { get { return handle == IntPtr.Zero; } } override protected bool ReleaseHandle() { return UiaCoreApi.UiaNodeRelease(handle); } } // Internal Class that wraps the IntPtr to the Pattern internal sealed class SafePatternHandle : SafeHandle { // Called by P/Invoke when returning SafeHandles // (Also used by UiaCoreApi to create invalid handles.) internal SafePatternHandle() : base(IntPtr.Zero, true) { } // No need to provide a finalizer - SafeHandle's critical finalizer will // call ReleaseHandle for you. public override bool IsInvalid { get { return handle == IntPtr.Zero; } } override protected bool ReleaseHandle() { return UiaCoreApi.UiaPatternRelease(handle); } } // Internal Class that wraps the IntPtr to the Event internal sealed class SafeEventHandle : SafeHandle { internal SafeEventHandle() : base(IntPtr.Zero, true) { } public override bool IsInvalid { get { return handle == IntPtr.Zero; } } override protected bool ReleaseHandle() { UiaCoreApi.UiaRemoveEvent(handle); return true; } } } // 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. // // // // Description: Various SafeHandles used by UIA // //--------------------------------------------------------------------------- using System; using System.Runtime.InteropServices; using System.Windows.Automation; using System.Windows.Automation.Provider; // PRESHARP: In order to avoid generating warnings about unkown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 namespace MS.Internal.Automation { internal sealed class SafeNodeHandle : SafeHandle { // Called by P/Invoke when returning SafeHandles // (Also used by UiaCoreApi to create invalid handles.) internal SafeNodeHandle() : base(IntPtr.Zero, true) { } // No need to provide a finalizer - SafeHandle's critical finalizer will // call ReleaseHandle for you. public override bool IsInvalid { get { return handle == IntPtr.Zero; } } override protected bool ReleaseHandle() { return UiaCoreApi.UiaNodeRelease(handle); } } // Internal Class that wraps the IntPtr to the Pattern internal sealed class SafePatternHandle : SafeHandle { // Called by P/Invoke when returning SafeHandles // (Also used by UiaCoreApi to create invalid handles.) internal SafePatternHandle() : base(IntPtr.Zero, true) { } // No need to provide a finalizer - SafeHandle's critical finalizer will // call ReleaseHandle for you. public override bool IsInvalid { get { return handle == IntPtr.Zero; } } override protected bool ReleaseHandle() { return UiaCoreApi.UiaPatternRelease(handle); } } // Internal Class that wraps the IntPtr to the Event internal sealed class SafeEventHandle : SafeHandle { internal SafeEventHandle() : base(IntPtr.Zero, true) { } public override bool IsInvalid { get { return handle == IntPtr.Zero; } } override protected bool ReleaseHandle() { UiaCoreApi.UiaRemoveEvent(handle); return true; } } } // 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
- TreeNodeEventArgs.cs
- SvcMapFile.cs
- FastEncoder.cs
- StrongName.cs
- TdsParameterSetter.cs
- FlowDocumentFormatter.cs
- DiffuseMaterial.cs
- HtmlElementErrorEventArgs.cs
- SchemaImporterExtensionsSection.cs
- GridViewEditEventArgs.cs
- NativeMethods.cs
- WmpBitmapEncoder.cs
- EncryptedReference.cs
- ImageSourceConverter.cs
- KeyboardDevice.cs
- AsyncCompletedEventArgs.cs
- DependencyPropertyKey.cs
- EnumerableRowCollection.cs
- ThreadExceptionEvent.cs
- UIElement3D.cs
- PartialClassGenerationTaskInternal.cs
- UrlParameterWriter.cs
- SqlProcedureAttribute.cs
- InputBinder.cs
- Clipboard.cs
- documentsequencetextpointer.cs
- DeclaredTypeElementCollection.cs
- IncrementalCompileAnalyzer.cs
- SqlUtils.cs
- Transform3DGroup.cs
- BamlStream.cs
- ExceptionHandlers.cs
- SqlDataSourceSummaryPanel.cs
- KeyFrames.cs
- ToolStripGripRenderEventArgs.cs
- ThreadLocal.cs
- URLString.cs
- TogglePattern.cs
- SQLRoleProvider.cs
- RubberbandSelector.cs
- XmlTextEncoder.cs
- XamlFilter.cs
- DiscoveryCallbackBehavior.cs
- TimeSpanMinutesConverter.cs
- CompileLiteralTextParser.cs
- DataControlField.cs
- MenuRenderer.cs
- CodeExporter.cs
- ApplyTemplatesAction.cs
- Errors.cs
- CounterSampleCalculator.cs
- QueryCursorEventArgs.cs
- WebPartDescriptionCollection.cs
- Clause.cs
- FontResourceCache.cs
- CompiledQueryCacheKey.cs
- WindowsFormsHelpers.cs
- SqlAliasesReferenced.cs
- AliasedSlot.cs
- RuleAction.cs
- XmlILIndex.cs
- PeerInputChannel.cs
- GridViewDeletedEventArgs.cs
- DataGridState.cs
- PropertyEmitterBase.cs
- HyperLinkStyle.cs
- LeaseManager.cs
- X509SecurityToken.cs
- HebrewNumber.cs
- MailAddress.cs
- CodeBlockBuilder.cs
- XmlDataSource.cs
- HyperLinkColumn.cs
- XmlNodeChangedEventArgs.cs
- HttpInputStream.cs
- ComboBox.cs
- BitmapEffectGeneralTransform.cs
- XamlTypeMapper.cs
- SupportsEventValidationAttribute.cs
- SecurityManager.cs
- BinaryObjectWriter.cs
- DesignerGeometryHelper.cs
- MimeObjectFactory.cs
- HttpBrowserCapabilitiesWrapper.cs
- _SingleItemRequestCache.cs
- ExpandSegment.cs
- ScriptingRoleServiceSection.cs
- ResourceExpression.cs
- AutomationPropertyInfo.cs
- ForeignKeyFactory.cs
- XmlAnyElementAttributes.cs
- ConcurrentDictionary.cs
- _AuthenticationState.cs
- OracleParameterCollection.cs
- CompositeActivityTypeDescriptor.cs
- PersonalizationProviderHelper.cs
- InvokeMethodActivityDesigner.cs
- templategroup.cs
- SoapReflector.cs
- CheckBoxList.cs