Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Input / RawUIStateInputReport.cs / 1 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- keycontainerpermission.cs
- WaitHandleCannotBeOpenedException.cs
- KeyValueConfigurationElement.cs
- SmiEventSink_DeferedProcessing.cs
- TemplateAction.cs
- Command.cs
- SerializableTypeCodeDomSerializer.cs
- QilXmlWriter.cs
- WebHttpSecurityElement.cs
- ListViewInsertEventArgs.cs
- Panel.cs
- LineInfo.cs
- CustomValidator.cs
- AutomationPatternInfo.cs
- ImageInfo.cs
- FieldMetadata.cs
- NonParentingControl.cs
- RSAOAEPKeyExchangeFormatter.cs
- wpf-etw.cs
- IdentityReference.cs
- ProcessHostConfigUtils.cs
- SkewTransform.cs
- CounterSampleCalculator.cs
- GridViewDesigner.cs
- PeerInvitationResponse.cs
- DrawingDrawingContext.cs
- TableParagraph.cs
- BrushValueSerializer.cs
- MetadataSource.cs
- ComponentChangedEvent.cs
- DecoderBestFitFallback.cs
- ScrollPatternIdentifiers.cs
- BeginEvent.cs
- DocumentOrderQuery.cs
- TimeZoneInfo.cs
- PanelContainerDesigner.cs
- ObjectItemCollection.cs
- SendKeys.cs
- XamlPathDataSerializer.cs
- CodeCastExpression.cs
- RightsManagementPermission.cs
- VScrollBar.cs
- CodeExpressionCollection.cs
- RuntimeConfig.cs
- Int16Converter.cs
- MemberAssignment.cs
- NamespaceMapping.cs
- DocumentPageHost.cs
- diagnosticsswitches.cs
- DataSetMappper.cs
- DataListItem.cs
- DateTimeValueSerializerContext.cs
- FontSourceCollection.cs
- ProtocolsSection.cs
- LeaseManager.cs
- Container.cs
- MouseButtonEventArgs.cs
- HybridWebProxyFinder.cs
- OutputCacheEntry.cs
- ExpressionStringBuilder.cs
- ProcessModule.cs
- CodeDefaultValueExpression.cs
- RegexCode.cs
- AudioDeviceOut.cs
- ExtenderProvidedPropertyAttribute.cs
- SelectedCellsCollection.cs
- GuidelineSet.cs
- Attributes.cs
- RtfToken.cs
- QueryOperationResponseOfT.cs
- Label.cs
- DashStyle.cs
- XamlFrame.cs
- CompilerErrorCollection.cs
- ListViewItem.cs
- AnalyzedTree.cs
- OracleTransaction.cs
- StdValidatorsAndConverters.cs
- WorkflowInstanceExtensionCollection.cs
- HealthMonitoringSectionHelper.cs
- TcpTransportBindingElement.cs
- Point3DConverter.cs
- TextBox.cs
- CompositeActivityTypeDescriptorProvider.cs
- SystemColorTracker.cs
- DockEditor.cs
- PersistenceProviderDirectory.cs
- ImageFormatConverter.cs
- ButtonChrome.cs
- TransformGroup.cs
- ValueType.cs
- WebRequestModuleElement.cs
- BlurBitmapEffect.cs
- ListItemsCollectionEditor.cs
- IDQuery.cs
- TextContainerChangeEventArgs.cs
- TypeUtils.cs
- HttpFileCollection.cs
- DataGridPageChangedEventArgs.cs
- AppDomain.cs