Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Shared / MS / Win32 / SafeSystemMetrics.cs / 1305600 / SafeSystemMetrics.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2004 // // File: SafeSystemMetrics.cs // This class is copied from the system metrics class in frameworks. The // reason it exists is to consolidate all system metric calls through one layer // so that maintenance from a security stand point gets easier. We will add // mertrics on a need basis. The caching code is removed since the original calls // that were moved here do not rely on caching. If there is a percieved perf. problem // we can work on enabling this. //----------------------------------------------------------------------------- using System; using System.Collections; using System.Runtime.InteropServices; using System.Windows.Media; using Microsoft.Win32; using System.Security; using System.Security.Permissions; using MS.Win32; using MS.Internal; using MS.Internal.Interop; using MS.Internal.PresentationCore; namespace MS.Win32 { ////// Contains properties that are queries into the system's various settings. /// [FriendAccessAllowed] // Built into Core, also used by Framework. internal sealed class SafeSystemMetrics { private SafeSystemMetrics() { } #if !PRESENTATION_CORE ////// Maps to SM_CXVIRTUALSCREEN /// ////// TreatAsSafe --There exists a demand /// Security Critical -- Calling UnsafeNativeMethods /// internal static int VirtualScreenWidth { [SecurityCritical,SecurityTreatAsSafe] get { SecurityHelper.DemandUnmanagedCode(); return UnsafeNativeMethods.GetSystemMetrics(SM.CXVIRTUALSCREEN); } } ////// Maps to SM_CYVIRTUALSCREEN /// ////// TreatAsSafe --There exists a demand /// Security Critical -- Calling UnsafeNativeMethods /// internal static int VirtualScreenHeight { [SecurityCritical,SecurityTreatAsSafe] get { SecurityHelper.DemandUnmanagedCode(); return UnsafeNativeMethods.GetSystemMetrics(SM.CYVIRTUALSCREEN); } } #endif //end !PRESENTATIONCORE ////// Maps to SM_CXDOUBLECLK /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DoubleClickDeltaX { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CXDOUBLECLK); } } ////// Maps to SM_CYDOUBLECLK /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DoubleClickDeltaY { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CYDOUBLECLK); } } ////// Maps to SM_CXDRAG /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DragDeltaX { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CXDRAG); } } ////// Maps to SM_CYDRAG /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DragDeltaY { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CYDRAG); } } ////// Is an IMM enabled ? Maps to SM_IMMENABLED /// //////Critical - calls a method that performs an elevation. /// TreatAsSafe - data is considered safe to expose. /// internal static bool IsImmEnabled { [SecurityCritical, SecurityTreatAsSafe] get { return (UnsafeNativeMethods.GetSystemMetrics(SM.IMMENABLED) != 0); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2004 // // File: SafeSystemMetrics.cs // This class is copied from the system metrics class in frameworks. The // reason it exists is to consolidate all system metric calls through one layer // so that maintenance from a security stand point gets easier. We will add // mertrics on a need basis. The caching code is removed since the original calls // that were moved here do not rely on caching. If there is a percieved perf. problem // we can work on enabling this. //----------------------------------------------------------------------------- using System; using System.Collections; using System.Runtime.InteropServices; using System.Windows.Media; using Microsoft.Win32; using System.Security; using System.Security.Permissions; using MS.Win32; using MS.Internal; using MS.Internal.Interop; using MS.Internal.PresentationCore; namespace MS.Win32 { ////// Contains properties that are queries into the system's various settings. /// [FriendAccessAllowed] // Built into Core, also used by Framework. internal sealed class SafeSystemMetrics { private SafeSystemMetrics() { } #if !PRESENTATION_CORE ////// Maps to SM_CXVIRTUALSCREEN /// ////// TreatAsSafe --There exists a demand /// Security Critical -- Calling UnsafeNativeMethods /// internal static int VirtualScreenWidth { [SecurityCritical,SecurityTreatAsSafe] get { SecurityHelper.DemandUnmanagedCode(); return UnsafeNativeMethods.GetSystemMetrics(SM.CXVIRTUALSCREEN); } } ////// Maps to SM_CYVIRTUALSCREEN /// ////// TreatAsSafe --There exists a demand /// Security Critical -- Calling UnsafeNativeMethods /// internal static int VirtualScreenHeight { [SecurityCritical,SecurityTreatAsSafe] get { SecurityHelper.DemandUnmanagedCode(); return UnsafeNativeMethods.GetSystemMetrics(SM.CYVIRTUALSCREEN); } } #endif //end !PRESENTATIONCORE ////// Maps to SM_CXDOUBLECLK /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DoubleClickDeltaX { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CXDOUBLECLK); } } ////// Maps to SM_CYDOUBLECLK /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DoubleClickDeltaY { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CYDOUBLECLK); } } ////// Maps to SM_CXDRAG /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DragDeltaX { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CXDRAG); } } ////// Maps to SM_CYDRAG /// ////// TreatAsSafe --This data is safe to expose /// Security Critical -- Calling UnsafeNativeMethods /// internal static int DragDeltaY { [SecurityCritical, SecurityTreatAsSafe] get { return UnsafeNativeMethods.GetSystemMetrics(SM.CYDRAG); } } ////// Is an IMM enabled ? Maps to SM_IMMENABLED /// //////Critical - calls a method that performs an elevation. /// TreatAsSafe - data is considered safe to expose. /// internal static bool IsImmEnabled { [SecurityCritical, SecurityTreatAsSafe] get { return (UnsafeNativeMethods.GetSystemMetrics(SM.IMMENABLED) != 0); } } } } // 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
- SiteMapPathDesigner.cs
- loginstatus.cs
- WebHttpDispatchOperationSelector.cs
- DatePickerDateValidationErrorEventArgs.cs
- DefaultTextStoreTextComposition.cs
- GrammarBuilderDictation.cs
- ByteFacetDescriptionElement.cs
- CapacityStreamGeometryContext.cs
- SmiXetterAccessMap.cs
- NativeRightsManagementAPIsStructures.cs
- DataBoundLiteralControl.cs
- SchemaTypeEmitter.cs
- SchemaName.cs
- ClipboardProcessor.cs
- CalendarDesigner.cs
- CheckBoxBaseAdapter.cs
- basecomparevalidator.cs
- HandleInitializationContext.cs
- FreezableOperations.cs
- DataChangedEventManager.cs
- GeneralTransformGroup.cs
- DataGridRelationshipRow.cs
- RawStylusInput.cs
- CaseStatementProjectedSlot.cs
- ListDataHelper.cs
- OleDbDataAdapter.cs
- PostBackOptions.cs
- NamedObject.cs
- BaseParaClient.cs
- SimpleFieldTemplateFactory.cs
- HandledEventArgs.cs
- ControlValuePropertyAttribute.cs
- AdornedElementPlaceholder.cs
- SQLResource.cs
- DbSourceParameterCollection.cs
- LinkTarget.cs
- DataStreamFromComStream.cs
- DateTimeHelper.cs
- BufferedConnection.cs
- ViewgenContext.cs
- TextServicesContext.cs
- ClientTargetCollection.cs
- SafeNativeMethods.cs
- ColumnResizeUndoUnit.cs
- DrawingContext.cs
- ExternalException.cs
- ProcessModule.cs
- DependencyObjectProvider.cs
- HtmlFormWrapper.cs
- Operators.cs
- CheckBoxField.cs
- CommandManager.cs
- DateTimeOffsetConverter.cs
- connectionpool.cs
- FixedSOMSemanticBox.cs
- FormsAuthenticationModule.cs
- HybridWebProxyFinder.cs
- ToolStripArrowRenderEventArgs.cs
- EventLogReader.cs
- ReaderWriterLockSlim.cs
- HttpListenerContext.cs
- BuildProviderAppliesToAttribute.cs
- OpenTypeCommon.cs
- FacetValueContainer.cs
- CompiledQuery.cs
- DrawingGroup.cs
- _ListenerRequestStream.cs
- Margins.cs
- DesignerVerb.cs
- WpfPayload.cs
- ReflectTypeDescriptionProvider.cs
- URIFormatException.cs
- BamlBinaryWriter.cs
- ConfigPathUtility.cs
- DelayLoadType.cs
- SoundPlayerAction.cs
- BaseParser.cs
- DefaultAuthorizationContext.cs
- HtmlWindow.cs
- NonBatchDirectoryCompiler.cs
- CollectionBuilder.cs
- IsolatedStorageFileStream.cs
- SecurityUniqueId.cs
- MetadataItemEmitter.cs
- ConversionContext.cs
- MergePropertyDescriptor.cs
- CompositeDataBoundControl.cs
- lengthconverter.cs
- SamlAudienceRestrictionCondition.cs
- HTMLTextWriter.cs
- FunctionCommandText.cs
- RepeaterItemEventArgs.cs
- LiteralText.cs
- FrugalMap.cs
- MDIWindowDialog.cs
- LingerOption.cs
- TypeSystem.cs
- FileSystemWatcher.cs
- cryptoapiTransform.cs
- Soap12ServerProtocol.cs