Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / 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. 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
- TriggerAction.cs
- EmptyStringExpandableObjectConverter.cs
- Token.cs
- RTLAwareMessageBox.cs
- DataGridViewTopLeftHeaderCell.cs
- DoubleCollectionValueSerializer.cs
- DocumentXPathNavigator.cs
- IssuanceLicense.cs
- CapabilitiesSection.cs
- Rectangle.cs
- ColumnResizeUndoUnit.cs
- __ComObject.cs
- IntPtr.cs
- CollectionAdapters.cs
- ResourceKey.cs
- CodeConditionStatement.cs
- TrackingMemoryStream.cs
- RuntimeVariablesExpression.cs
- CodeIdentifier.cs
- DataSourceView.cs
- InternalBufferOverflowException.cs
- PathSegment.cs
- StyleCollection.cs
- SafeNativeMethods.cs
- CodeDesigner.cs
- FlowDocumentReader.cs
- SourceFileBuildProvider.cs
- ResizeBehavior.cs
- Lease.cs
- XmlEncApr2001.cs
- ShaderRenderModeValidation.cs
- ServiceContractListItemList.cs
- JpegBitmapDecoder.cs
- storagemappingitemcollection.viewdictionary.cs
- SeekableMessageNavigator.cs
- SemanticValue.cs
- CellRelation.cs
- SqlReorderer.cs
- ExpressionBinding.cs
- SearchExpression.cs
- BitmapPalettes.cs
- DefaultEventAttribute.cs
- DataGridTable.cs
- DependencyObject.cs
- Validator.cs
- Thumb.cs
- RelatedImageListAttribute.cs
- References.cs
- ThemeConfigurationDialog.cs
- InspectionWorker.cs
- TimeoutException.cs
- StickyNoteContentControl.cs
- SchemaManager.cs
- cookie.cs
- XmlRawWriter.cs
- ValueExpressions.cs
- BamlRecordWriter.cs
- DeflateEmulationStream.cs
- XamlTreeBuilder.cs
- RecognizedPhrase.cs
- DispatchWrapper.cs
- ExtendedPropertyCollection.cs
- InternalRelationshipCollection.cs
- DesignerRegion.cs
- PeerApplication.cs
- AttributedMetaModel.cs
- CollectionContainer.cs
- XmlChoiceIdentifierAttribute.cs
- SurrogateChar.cs
- ReaderContextStackData.cs
- RepeatEnumerable.cs
- LongPath.cs
- SqlTriggerAttribute.cs
- ConnectionPoolManager.cs
- DoubleLink.cs
- EmitterCache.cs
- Decimal.cs
- CreateUserWizard.cs
- UserControl.cs
- securitycriticaldata.cs
- PasswordDeriveBytes.cs
- ObjectStateManagerMetadata.cs
- PriorityQueue.cs
- StringPropertyBuilder.cs
- OleDbDataReader.cs
- GuidConverter.cs
- SystemEvents.cs
- UserPreferenceChangingEventArgs.cs
- OperationFormatUse.cs
- ZipFileInfoCollection.cs
- WindowsTitleBar.cs
- HttpConfigurationContext.cs
- TextTreeRootNode.cs
- DaylightTime.cs
- EmptyElement.cs
- ExceptionUtil.cs
- MediaElement.cs
- WebPartTransformer.cs
- StandardCommands.cs
- QuotedPrintableStream.cs