Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Automation / Peers / GenericRootAutomationPeer.cs / 1 / GenericRootAutomationPeer.cs
using System; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Text; using System.Windows; using System.Windows.Interop; using System.Windows.Media; using System.ComponentModel; using MS.Internal; using MS.Win32; // Used to support the warnings disabled below #pragma warning disable 1634, 1691 namespace System.Windows.Automation.Peers { /// public class GenericRootAutomationPeer : UIElementAutomationPeer { /// public GenericRootAutomationPeer(UIElement owner): base(owner) {} /// override protected string GetClassNameCore() { return "Pane"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Pane; } /// ////// Critical: As this accesses Handle /// TreatAsSafe: Returning the Window Title is considered safe - discussed on Automation TA review /// [SecurityCritical,SecurityTreatAsSafe] override protected string GetNameCore() { string name = base.GetNameCore(); if(name == string.Empty) { IntPtr hwnd = this.Hwnd; if(hwnd != IntPtr.Zero) { try { StringBuilder sb = new StringBuilder(512); //This method elevates via SuppressUnmanadegCodeSecurity and throws Win32Exception on GetLastError UnsafeNativeMethods.GetWindowText(new HandleRef(null, hwnd), sb, sb.Capacity); name = sb.ToString(); } // Allow empty catch statements. #pragma warning disable 56502 catch(Win32Exception) {} // Disallow empty catch statements. #pragma warning restore 56502 if (name == null) name = string.Empty; } } return name; } /// ////// Critical as this method accesses critical data. /// TreatAsSafe - window bounds by themselves is considered safe. /// [SecurityCritical, SecurityTreatAsSafe ] override protected Rect GetBoundingRectangleCore() { Rect bounds = new Rect(0,0,0,0); IntPtr hwnd = this.Hwnd; if(hwnd != IntPtr.Zero) { NativeMethods.RECT rc = new NativeMethods.RECT(0,0,0,0); try { //This method elevates via SuppressUnmanadegCodeSecurity and throws Win32Exception on GetLastError SafeNativeMethods.GetWindowRect(new HandleRef(null, hwnd), ref rc); } // Allow empty catch statements. #pragma warning disable 56502 catch(Win32Exception) {} // Disallow empty catch statements. #pragma warning restore 56502 bounds = new Rect(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top); } return bounds; } } } // 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
- SafeNativeMethodsOther.cs
- SharedPerformanceCounter.cs
- Int32.cs
- EdmToObjectNamespaceMap.cs
- EntityDataSourceDataSelectionPanel.designer.cs
- PagesChangedEventArgs.cs
- SessionEndingEventArgs.cs
- TableCellCollection.cs
- DesignerActionKeyboardBehavior.cs
- HeaderElement.cs
- IPEndPoint.cs
- BulletChrome.cs
- SoapSchemaMember.cs
- Internal.cs
- AssemblySettingAttributes.cs
- ObjectListDataBindEventArgs.cs
- Encoder.cs
- EmptyEnumerator.cs
- EntityAdapter.cs
- CompatibleComparer.cs
- MouseCaptureWithinProperty.cs
- ClientTarget.cs
- Console.cs
- SafeMILHandle.cs
- UnionCqlBlock.cs
- DocumentViewerHelper.cs
- PropertyNames.cs
- XamlVector3DCollectionSerializer.cs
- TdsParameterSetter.cs
- XmlILConstructAnalyzer.cs
- HostingPreferredMapPath.cs
- TransformPatternIdentifiers.cs
- StylusPointPropertyUnit.cs
- DefaultTraceListener.cs
- _NegotiateClient.cs
- PackageFilter.cs
- MobileRedirect.cs
- Translator.cs
- ShutDownListener.cs
- TextChange.cs
- XPathQilFactory.cs
- DirectoryNotFoundException.cs
- ActivityDesigner.cs
- FlowDocumentPage.cs
- CheckoutException.cs
- NavigatorInput.cs
- ZipIOLocalFileBlock.cs
- RawMouseInputReport.cs
- ContainerActivationHelper.cs
- CloseSequence.cs
- TreeWalker.cs
- TreeNodeCollection.cs
- Form.cs
- DataSetSchema.cs
- WaitHandle.cs
- PersonalizablePropertyEntry.cs
- WindowsSecurityTokenAuthenticator.cs
- TextShapeableCharacters.cs
- DecimalConverter.cs
- GroupBox.cs
- XmlSerializerSection.cs
- KoreanCalendar.cs
- SafeFindHandle.cs
- Bits.cs
- DataServiceContext.cs
- ExpressionBinding.cs
- MessageSecurityException.cs
- StringConverter.cs
- CursorConverter.cs
- C14NUtil.cs
- ListMarkerSourceInfo.cs
- SendingRequestEventArgs.cs
- TitleStyle.cs
- CommandBindingCollection.cs
- XPathParser.cs
- CategoryValueConverter.cs
- BuildResult.cs
- DbConnectionPoolGroup.cs
- DataControlReference.cs
- EncryptedPackage.cs
- GridViewRowEventArgs.cs
- WindowsAuthenticationModule.cs
- AppSettingsSection.cs
- CodeChecksumPragma.cs
- ModifyActivitiesPropertyDescriptor.cs
- FromReply.cs
- CallTemplateAction.cs
- Message.cs
- Underline.cs
- SqlDataSourceSelectingEventArgs.cs
- ExpressionLink.cs
- Literal.cs
- MatrixCamera.cs
- DataBoundLiteralControl.cs
- NotSupportedException.cs
- XmlSchemaComplexContent.cs
- CodeDOMProvider.cs
- CodeGroup.cs
- SiteMapNodeItem.cs
- RuntimeHelpers.cs