Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / UIAutomation / UIAutomationClient / MS / Internal / Automation / SafeProcessHandle.cs / 1 / SafeProcessHandle.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // // History: // 10/04/2003 : [....] Created //--------------------------------------------------------------------------- // PRESHARP: In order to avoid generating warnings about unkown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 using System; using System.Security; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Windows.Automation; using Microsoft.Win32.SafeHandles; using MS.Win32; namespace MS.Internal.Automation { internal sealed class SafeProcessHandle : SafeHandleZeroOrMinusOneIsInvalid { // This constructor is used by the P/Invoke marshaling layer // to allocate a SafeHandle instance. P/Invoke then does the // appropriate method call, storing the handle in this class. private SafeProcessHandle() : base(true) {} internal SafeProcessHandle(NativeMethods.HWND hwnd) : base(true) { int processId; // Get process id... // GetWindowThreadProcessId does use SetLastError(). So a call to GetLastError() would be meanless. // Disabling the PreSharp warning. #pragma warning suppress 6523 if (SafeNativeMethods.GetWindowThreadProcessId(hwnd, out processId) == 0) { throw new ElementNotAvailableException(); } SetHandle(Misc.OpenProcess(UnsafeNativeMethods.PROCESS_QUERY_INFORMATION | UnsafeNativeMethods.PROCESS_VM_READ, false, processId, hwnd)); } // protected override bool ReleaseHandle() { return Misc.CloseHandle(handle); } } } // 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: // // History: // 10/04/2003 : [....] Created //--------------------------------------------------------------------------- // PRESHARP: In order to avoid generating warnings about unkown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 using System; using System.Security; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Windows.Automation; using Microsoft.Win32.SafeHandles; using MS.Win32; namespace MS.Internal.Automation { internal sealed class SafeProcessHandle : SafeHandleZeroOrMinusOneIsInvalid { // This constructor is used by the P/Invoke marshaling layer // to allocate a SafeHandle instance. P/Invoke then does the // appropriate method call, storing the handle in this class. private SafeProcessHandle() : base(true) {} internal SafeProcessHandle(NativeMethods.HWND hwnd) : base(true) { int processId; // Get process id... // GetWindowThreadProcessId does use SetLastError(). So a call to GetLastError() would be meanless. // Disabling the PreSharp warning. #pragma warning suppress 6523 if (SafeNativeMethods.GetWindowThreadProcessId(hwnd, out processId) == 0) { throw new ElementNotAvailableException(); } SetHandle(Misc.OpenProcess(UnsafeNativeMethods.PROCESS_QUERY_INFORMATION | UnsafeNativeMethods.PROCESS_VM_READ, false, processId, hwnd)); } // protected override bool ReleaseHandle() { return Misc.CloseHandle(handle); } } } // 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
- Nullable.cs
- IODescriptionAttribute.cs
- Section.cs
- FormsAuthenticationCredentials.cs
- DateTimeConverter2.cs
- XmlSiteMapProvider.cs
- DomainUpDown.cs
- IdentityHolder.cs
- ValidationErrorCollection.cs
- TdsValueSetter.cs
- MetadataCache.cs
- GraphicsPathIterator.cs
- MimePart.cs
- ConcurrentDictionary.cs
- WmlMobileTextWriter.cs
- TraceHandler.cs
- BoolExpr.cs
- DependencyPropertyKind.cs
- CorrelationValidator.cs
- DataRowExtensions.cs
- QueryReaderSettings.cs
- WebServiceHandler.cs
- QueryResponse.cs
- ObjectListDataBindEventArgs.cs
- DependencyPropertyKind.cs
- Exceptions.cs
- FrameworkElementAutomationPeer.cs
- CustomExpressionEventArgs.cs
- DirectionalLight.cs
- IriParsingElement.cs
- CategoryGridEntry.cs
- RoutedUICommand.cs
- ProviderConnectionPointCollection.cs
- LogEntry.cs
- RoleGroupCollection.cs
- SoapExtensionImporter.cs
- PostBackTrigger.cs
- TemplatePropertyEntry.cs
- SplitterEvent.cs
- FilterEventArgs.cs
- PhysicalFontFamily.cs
- UriExt.cs
- ElasticEase.cs
- TreeNodeStyle.cs
- EntityDataSourceWrapper.cs
- XmlQualifiedName.cs
- HtmlContainerControl.cs
- StateElement.cs
- ApplicationFileCodeDomTreeGenerator.cs
- WindowsBrush.cs
- DataSourceSelectArguments.cs
- GraphicsState.cs
- EventLogPermissionEntryCollection.cs
- SkinIDTypeConverter.cs
- EditorPart.cs
- ProcessRequestArgs.cs
- ObjectStateFormatter.cs
- DbProviderFactory.cs
- TemplateControlBuildProvider.cs
- KoreanCalendar.cs
- _HelperAsyncResults.cs
- Size.cs
- PageRouteHandler.cs
- MasterPageCodeDomTreeGenerator.cs
- CodeSubDirectory.cs
- RsaSecurityTokenAuthenticator.cs
- M3DUtil.cs
- StringWriter.cs
- DataSourceXmlTextReader.cs
- CodeExporter.cs
- NumericUpDown.cs
- Byte.cs
- CollectionBase.cs
- SchemaDeclBase.cs
- codemethodreferenceexpression.cs
- SelectionRangeConverter.cs
- CodeSnippetStatement.cs
- DataTemplateSelector.cs
- MouseGesture.cs
- SettingsPropertyCollection.cs
- CheckPair.cs
- MonthChangedEventArgs.cs
- NGCSerializerAsync.cs
- RemotingSurrogateSelector.cs
- SqlFunctions.cs
- SQLBinary.cs
- Int16KeyFrameCollection.cs
- XmlSiteMapProvider.cs
- ZoneMembershipCondition.cs
- DocumentsTrace.cs
- CompilerLocalReference.cs
- EntityContainerAssociationSetEnd.cs
- WindowProviderWrapper.cs
- DataControlFieldCell.cs
- KeyValueConfigurationCollection.cs
- InputLangChangeEvent.cs
- CoTaskMemSafeHandle.cs
- AttachedPropertyBrowsableAttribute.cs
- TextParagraphCache.cs
- ToolStripArrowRenderEventArgs.cs