Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / Command / SecureUICommand.cs / 1305600 / SecureUICommand.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: The Command class is used by the developer to define the intent of the User Action // This also serves the purpose of identifying commands or to compare identities of // InputBindings and CommandBindings // // See New spec at : (need link) // // History: // 01/26/2005 : [....] - Created //--------------------------------------------------------------------------- using System; using System.Security; using System.Security.Permissions; using System.Windows; using System.ComponentModel; using System.Collections; using System.Windows.Input; namespace System.Windows.Input { ////// Command /// [TypeConverter("System.Windows.Input.CommandConverter, PresentationFramework, Version=" + Microsoft.Internal.BuildInfo.WCP_VERSION + ", Culture=neutral, PublicKeyToken=" + Microsoft.Internal.BuildInfo.WCP_PUBLIC_KEY_TOKEN + ", Custom=null")] internal class SecureUICommand : RoutedUICommand, ISecureCommand { ////// Critical - should only be write-once in the constructor /// [SecurityCritical] readonly PermissionSet _userInitiated; ////// Creates a new secure command, requiring the specified permissions. Used to delay initialization of Text and InputGestureCollection to time of first use. /// /// PermissionSet to associate with this command /// Name of the Command Property/Field for Serialization /// Type that is registering the property /// Idenfier assigned by the owning type. ////// Critical - assigns to the permission set, a protected resource /// TreatAsSafe - KeyBinding (through InputBinding) will demand this permission before /// binding this command to any key. /// [SecurityCritical, SecurityTreatAsSafe] internal SecureUICommand(PermissionSet userInitiated, string name, Type ownerType, byte commandId) : base(name, ownerType, commandId) { _userInitiated = userInitiated; } ////// Permission required to modify bindings for this /// command, and the permission to assert when /// the command is invoked in a user interactive /// (trusted) fashion. /// ////// Critical - access the permission set, a protected resource /// TreatAsSafe - get only access is safe /// public PermissionSet UserInitiatedPermission { [SecurityCritical, SecurityTreatAsSafe] get { return _userInitiated; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: The Command class is used by the developer to define the intent of the User Action // This also serves the purpose of identifying commands or to compare identities of // InputBindings and CommandBindings // // See New spec at : (need link) // // History: // 01/26/2005 : [....] - Created //--------------------------------------------------------------------------- using System; using System.Security; using System.Security.Permissions; using System.Windows; using System.ComponentModel; using System.Collections; using System.Windows.Input; namespace System.Windows.Input { ////// Command /// [TypeConverter("System.Windows.Input.CommandConverter, PresentationFramework, Version=" + Microsoft.Internal.BuildInfo.WCP_VERSION + ", Culture=neutral, PublicKeyToken=" + Microsoft.Internal.BuildInfo.WCP_PUBLIC_KEY_TOKEN + ", Custom=null")] internal class SecureUICommand : RoutedUICommand, ISecureCommand { ////// Critical - should only be write-once in the constructor /// [SecurityCritical] readonly PermissionSet _userInitiated; ////// Creates a new secure command, requiring the specified permissions. Used to delay initialization of Text and InputGestureCollection to time of first use. /// /// PermissionSet to associate with this command /// Name of the Command Property/Field for Serialization /// Type that is registering the property /// Idenfier assigned by the owning type. ////// Critical - assigns to the permission set, a protected resource /// TreatAsSafe - KeyBinding (through InputBinding) will demand this permission before /// binding this command to any key. /// [SecurityCritical, SecurityTreatAsSafe] internal SecureUICommand(PermissionSet userInitiated, string name, Type ownerType, byte commandId) : base(name, ownerType, commandId) { _userInitiated = userInitiated; } ////// Permission required to modify bindings for this /// command, and the permission to assert when /// the command is invoked in a user interactive /// (trusted) fashion. /// ////// Critical - access the permission set, a protected resource /// TreatAsSafe - get only access is safe /// public PermissionSet UserInitiatedPermission { [SecurityCritical, SecurityTreatAsSafe] get { return _userInitiated; } } } } // 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
- Panel.cs
- TextStore.cs
- IPCCacheManager.cs
- KoreanLunisolarCalendar.cs
- sqlpipe.cs
- JoinQueryOperator.cs
- ComNativeDescriptor.cs
- XslException.cs
- DelimitedListTraceListener.cs
- EmptyReadOnlyDictionaryInternal.cs
- TypeDescriptionProviderAttribute.cs
- FontStyleConverter.cs
- EntityTypeEmitter.cs
- SessionEndedEventArgs.cs
- DispatcherObject.cs
- SqlCacheDependencyDatabaseCollection.cs
- EventLogEntry.cs
- MulticastIPAddressInformationCollection.cs
- OutputCacheProfile.cs
- EventLogPermissionAttribute.cs
- SqlGatherConsumedAliases.cs
- RenamedEventArgs.cs
- XmlNullResolver.cs
- XmlDocumentType.cs
- ReadOnlyCollectionBase.cs
- SmiEventSink_DeferedProcessing.cs
- GenerateDerivedKeyRequest.cs
- TextSelectionProcessor.cs
- GridViewCellAutomationPeer.cs
- MetaForeignKeyColumn.cs
- ADMembershipProvider.cs
- DayRenderEvent.cs
- InputManager.cs
- SapiRecoContext.cs
- WebPartDisplayModeCollection.cs
- ByteStack.cs
- ScriptBehaviorDescriptor.cs
- MarginsConverter.cs
- InfoCardArgumentException.cs
- Vector3dCollection.cs
- FaultException.cs
- AnnotationHelper.cs
- EventRoute.cs
- SimpleBitVector32.cs
- ConnectionManagementSection.cs
- FigureHelper.cs
- NumberFormatter.cs
- RoleGroupCollection.cs
- SHA1.cs
- BaseAppDomainProtocolHandler.cs
- RangeBaseAutomationPeer.cs
- RootBrowserWindowAutomationPeer.cs
- CallbackWrapper.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- XamlFigureLengthSerializer.cs
- CacheSection.cs
- SplitterCancelEvent.cs
- SecurityUtils.cs
- HealthMonitoringSection.cs
- TreeView.cs
- AspNetHostingPermission.cs
- keycontainerpermission.cs
- TaskExceptionHolder.cs
- DetailsViewDeletedEventArgs.cs
- Parser.cs
- ObjectViewFactory.cs
- HttpContextServiceHost.cs
- MediaCommands.cs
- querybuilder.cs
- TransactedReceiveScope.cs
- CustomAttributeFormatException.cs
- FormatterConverter.cs
- documentsequencetextcontainer.cs
- ListComponentEditor.cs
- PermissionAttributes.cs
- FontDialog.cs
- DeleteIndexBinder.cs
- FilterQuery.cs
- HttpModulesSection.cs
- AuthorizationPolicyTypeElement.cs
- DiagnosticTraceSource.cs
- TextTreeDeleteContentUndoUnit.cs
- ConfigXmlWhitespace.cs
- ClientApiGenerator.cs
- SoapElementAttribute.cs
- DeclarativeCatalogPartDesigner.cs
- DesignerSerializationManager.cs
- Typography.cs
- AssemblyInfo.cs
- ISCIIEncoding.cs
- SchemaElementLookUpTable.cs
- _SpnDictionary.cs
- PageThemeParser.cs
- Point3D.cs
- UncommonField.cs
- DBConnectionString.cs
- SoapEnumAttribute.cs
- NetworkCredential.cs
- DecimalConverter.cs
- HwndSourceParameters.cs