Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / RawUIStateInputReport.cs / 1305600 / RawUIStateInputReport.cs
using System; using System.Security; using System.Security.Permissions; using MS.Internal; using MS.Win32; using System.Windows; namespace System.Windows.Input { ////// The RawUIStateInputReport class encapsulates the raw input /// provided from WM_*UISTATE* messages. /// internal class RawUIStateInputReport : InputReport { ////// Constructs an instance of the RawUIStateInputReport class. /// /// /// The input source that provided this input. /// /// /// The mode in which the input is being provided. /// /// /// The time when the input occured. /// /// /// The action being reported. /// /// /// The targets being reported. /// ////// Critical:This handles critical data in the form of PresentationSource /// TreatAsSafe:The data has demands on the property when someone tries to access it. /// [SecurityCritical,SecurityTreatAsSafe] public RawUIStateInputReport( PresentationSource inputSource, InputMode mode, int timestamp, RawUIStateActions action, RawUIStateTargets targets) : base(inputSource, InputType.Keyboard, mode, timestamp) { if (!IsValidRawUIStateAction(action)) throw new System.ComponentModel.InvalidEnumArgumentException("action", (int)action, typeof(RawUIStateActions)); if (!IsValidRawUIStateTargets(targets)) throw new System.ComponentModel.InvalidEnumArgumentException("targets", (int)targets, typeof(RawUIStateTargets)); _action = action; _targets = targets; } ////// Read-only access to the action that was reported. /// public RawUIStateActions Action {get {return _action;}} ////// Read-only access to the targets that were reported. /// public RawUIStateTargets Targets {get {return _targets;}} // IsValid Method for RawUIStateActions. internal static bool IsValidRawUIStateAction(RawUIStateActions action) { return (action == RawUIStateActions.Set || action == RawUIStateActions.Clear || action == RawUIStateActions.Initialize); } // IsValid Method for RawUIStateTargets. Relies on the enum being [Flags]. internal static bool IsValidRawUIStateTargets(RawUIStateTargets targets) { return ((targets & (RawUIStateTargets.HideFocus | RawUIStateTargets.HideAccelerators | RawUIStateTargets.Active)) == targets); } private RawUIStateActions _action; private RawUIStateTargets _targets; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Security; using System.Security.Permissions; using MS.Internal; using MS.Win32; using System.Windows; namespace System.Windows.Input { ////// The RawUIStateInputReport class encapsulates the raw input /// provided from WM_*UISTATE* messages. /// internal class RawUIStateInputReport : InputReport { ////// Constructs an instance of the RawUIStateInputReport class. /// /// /// The input source that provided this input. /// /// /// The mode in which the input is being provided. /// /// /// The time when the input occured. /// /// /// The action being reported. /// /// /// The targets being reported. /// ////// Critical:This handles critical data in the form of PresentationSource /// TreatAsSafe:The data has demands on the property when someone tries to access it. /// [SecurityCritical,SecurityTreatAsSafe] public RawUIStateInputReport( PresentationSource inputSource, InputMode mode, int timestamp, RawUIStateActions action, RawUIStateTargets targets) : base(inputSource, InputType.Keyboard, mode, timestamp) { if (!IsValidRawUIStateAction(action)) throw new System.ComponentModel.InvalidEnumArgumentException("action", (int)action, typeof(RawUIStateActions)); if (!IsValidRawUIStateTargets(targets)) throw new System.ComponentModel.InvalidEnumArgumentException("targets", (int)targets, typeof(RawUIStateTargets)); _action = action; _targets = targets; } ////// Read-only access to the action that was reported. /// public RawUIStateActions Action {get {return _action;}} ////// Read-only access to the targets that were reported. /// public RawUIStateTargets Targets {get {return _targets;}} // IsValid Method for RawUIStateActions. internal static bool IsValidRawUIStateAction(RawUIStateActions action) { return (action == RawUIStateActions.Set || action == RawUIStateActions.Clear || action == RawUIStateActions.Initialize); } // IsValid Method for RawUIStateTargets. Relies on the enum being [Flags]. internal static bool IsValidRawUIStateTargets(RawUIStateTargets targets) { return ((targets & (RawUIStateTargets.HideFocus | RawUIStateTargets.HideAccelerators | RawUIStateTargets.Active)) == targets); } private RawUIStateActions _action; private RawUIStateTargets _targets; } } // 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
- EntryPointNotFoundException.cs
- TransformerInfoCollection.cs
- EllipticalNodeOperations.cs
- ToolStripSplitButton.cs
- Schedule.cs
- DictationGrammar.cs
- SiteMapProvider.cs
- ISAPIRuntime.cs
- ToolBarTray.cs
- Stack.cs
- RawStylusInputCustomDataList.cs
- CharacterBuffer.cs
- GenericWebPart.cs
- UnsafePeerToPeerMethods.cs
- Property.cs
- SqlDataSourceStatusEventArgs.cs
- Point4DValueSerializer.cs
- DataGridViewTextBoxColumn.cs
- CollectionContainer.cs
- ColorContext.cs
- IdentityHolder.cs
- SplitterDesigner.cs
- SiteOfOriginContainer.cs
- StreamGeometry.cs
- DiscoveryDocumentReference.cs
- UserPreferenceChangingEventArgs.cs
- LoginDesigner.cs
- ParseHttpDate.cs
- RichTextBoxDesigner.cs
- QueryConverter.cs
- OverrideMode.cs
- PageAction.cs
- TCPListener.cs
- FigureParaClient.cs
- Enum.cs
- RSACryptoServiceProvider.cs
- TextEndOfLine.cs
- ToolBarButton.cs
- CursorConverter.cs
- PartManifestEntry.cs
- ComboBox.cs
- TextCompositionEventArgs.cs
- TdsRecordBufferSetter.cs
- StringUtil.cs
- LicenseContext.cs
- Int32KeyFrameCollection.cs
- UrlAuthFailedErrorFormatter.cs
- DataGridViewSelectedRowCollection.cs
- Size3D.cs
- ZoneButton.cs
- DPTypeDescriptorContext.cs
- XmlSchemaSimpleContentExtension.cs
- WindowProviderWrapper.cs
- DeferrableContentConverter.cs
- BitArray.cs
- isolationinterop.cs
- VectorConverter.cs
- FocusChangedEventArgs.cs
- HighlightVisual.cs
- TextRunCacheImp.cs
- _NegoState.cs
- NameNode.cs
- PeerReferralPolicy.cs
- SimpleTypeResolver.cs
- XPathDescendantIterator.cs
- wmiprovider.cs
- SourceCollection.cs
- SelectManyQueryOperator.cs
- OracleParameter.cs
- AttributeEmitter.cs
- DBPropSet.cs
- ActivityCollectionMarkupSerializer.cs
- EncodedStreamFactory.cs
- sqlnorm.cs
- PathFigureCollection.cs
- FixedSOMPageElement.cs
- SharedDp.cs
- HtmlTableCellCollection.cs
- SQLInt64Storage.cs
- VersionedStreamOwner.cs
- BasicExpandProvider.cs
- Point3DAnimation.cs
- MediaElementAutomationPeer.cs
- WebBrowserDesigner.cs
- ISAPIWorkerRequest.cs
- PropertyEmitter.cs
- TextBoxBase.cs
- ExtendedProperty.cs
- Keyboard.cs
- HttpStreamMessage.cs
- HexParser.cs
- xamlnodes.cs
- __ConsoleStream.cs
- DataColumnPropertyDescriptor.cs
- TagPrefixAttribute.cs
- ContextConfiguration.cs
- EntityConnectionStringBuilder.cs
- OperationFormatStyle.cs
- PictureBox.cs
- DesignerTransactionCloseEvent.cs