Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AppDomain.cs
- AspNetHostingPermission.cs
- ClientProxyGenerator.cs
- WindowsPrincipal.cs
- coordinator.cs
- Single.cs
- SerializerWriterEventHandlers.cs
- PasswordRecovery.cs
- XsltOutput.cs
- URIFormatException.cs
- DataGridRowAutomationPeer.cs
- ExternalException.cs
- TextTreeRootTextBlock.cs
- Column.cs
- FixedStringLookup.cs
- NativeRecognizer.cs
- SweepDirectionValidation.cs
- CodeTypeDelegate.cs
- ProgressChangedEventArgs.cs
- NativeRecognizer.cs
- DiffuseMaterial.cs
- RepeaterItemEventArgs.cs
- FrameworkTextComposition.cs
- PointHitTestResult.cs
- ExtendedPropertyDescriptor.cs
- TextDecorationCollection.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- ScriptResourceHandler.cs
- WebPartConnectionsConnectVerb.cs
- DeferredElementTreeState.cs
- SmtpLoginAuthenticationModule.cs
- DocumentReference.cs
- CatalogZone.cs
- Transform3D.cs
- XmlNotation.cs
- DesignOnlyAttribute.cs
- ConstructorNeedsTagAttribute.cs
- EmptyControlCollection.cs
- Marshal.cs
- JournalEntry.cs
- ServerValidateEventArgs.cs
- Internal.cs
- WebPartConnectionsConnectVerb.cs
- CompiledRegexRunnerFactory.cs
- SharedPerformanceCounter.cs
- XslTransform.cs
- securitycriticaldataformultiplegetandset.cs
- DirectoryRootQuery.cs
- MimeParameters.cs
- Helpers.cs
- ConfigXmlComment.cs
- StrokeSerializer.cs
- DetailsViewRow.cs
- DynamicActionMessageFilter.cs
- GrammarBuilderRuleRef.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- LayoutManager.cs
- WebFormsRootDesigner.cs
- SqlDependencyListener.cs
- InstanceBehavior.cs
- DefaultExpressionVisitor.cs
- InteropTrackingRecord.cs
- Table.cs
- IxmlLineInfo.cs
- ClipboardProcessor.cs
- Pair.cs
- CodeGroup.cs
- SetIndexBinder.cs
- NumericUpDownAcceleration.cs
- UnauthorizedAccessException.cs
- HtmlTable.cs
- HtmlTable.cs
- Attributes.cs
- SchemaManager.cs
- PriorityQueue.cs
- FontFamily.cs
- HttpWebResponse.cs
- SoapEnumAttribute.cs
- TypedReference.cs
- TransformDescriptor.cs
- HierarchicalDataTemplate.cs
- DataGridSortCommandEventArgs.cs
- CLSCompliantAttribute.cs
- ToolStripItemRenderEventArgs.cs
- RegistrationServices.cs
- DPCustomTypeDescriptor.cs
- PropertiesTab.cs
- SqlTriggerContext.cs
- ExtendedPropertyCollection.cs
- CodeIdentifier.cs
- ConnectionsZoneAutoFormat.cs
- GridViewColumnCollection.cs
- TemplateBindingExtensionConverter.cs
- ExpressionBuilder.cs
- ItemCollectionEditor.cs
- BackgroundWorker.cs
- MouseOverProperty.cs
- VisualStyleRenderer.cs
- ElementNotEnabledException.cs
- SQLInt64Storage.cs