Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Input / Command / SecureUICommand.cs / 1 / 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
- SmtpDigestAuthenticationModule.cs
- RegisteredScript.cs
- Baml2006Reader.cs
- DuplicateWaitObjectException.cs
- PermissionSet.cs
- SourceItem.cs
- PointAnimationUsingPath.cs
- SocketPermission.cs
- TypeBuilderInstantiation.cs
- BuildResultCache.cs
- StylusPlugin.cs
- WorkflowViewManager.cs
- Operators.cs
- XNodeValidator.cs
- Models.cs
- SettingsPropertyValue.cs
- OdbcInfoMessageEvent.cs
- XPathNodePointer.cs
- Error.cs
- SqlDependencyListener.cs
- SchemaInfo.cs
- FontFamilyConverter.cs
- MTConfigUtil.cs
- IIS7WorkerRequest.cs
- DataKeyArray.cs
- _ProxyChain.cs
- ComplexPropertyEntry.cs
- _NTAuthentication.cs
- InstanceCreationEditor.cs
- CommonServiceBehaviorElement.cs
- EventTrigger.cs
- PageStatePersister.cs
- QilReplaceVisitor.cs
- PartialList.cs
- ToolStripLabel.cs
- ToolStripPanelSelectionGlyph.cs
- DetailsViewDeletedEventArgs.cs
- ServiceProviders.cs
- ObjectConverter.cs
- XPathSingletonIterator.cs
- RtfToken.cs
- DateTimeFormatInfoScanner.cs
- Char.cs
- Unit.cs
- IFlowDocumentViewer.cs
- FusionWrap.cs
- RegexGroup.cs
- Frame.cs
- ListItemParagraph.cs
- RoleGroup.cs
- SafeNativeMethodsCLR.cs
- _ProxyChain.cs
- UITypeEditor.cs
- RemotingServices.cs
- BufferedGraphicsManager.cs
- SectionXmlInfo.cs
- AssemblyName.cs
- Decorator.cs
- dsa.cs
- SiteMapNodeItemEventArgs.cs
- ADMembershipUser.cs
- WmlLiteralTextAdapter.cs
- RegisteredScript.cs
- SamlAdvice.cs
- Transform3DCollection.cs
- RegexTypeEditor.cs
- BuildManager.cs
- SiteMapNodeItem.cs
- ContentHostHelper.cs
- KeyValuePair.cs
- CanonicalFormWriter.cs
- NodeLabelEditEvent.cs
- TypedElement.cs
- OptimizedTemplateContent.cs
- FeatureAttribute.cs
- MulticastIPAddressInformationCollection.cs
- ToolStripContainer.cs
- NativeMethods.cs
- SafeRightsManagementPubHandle.cs
- QilFactory.cs
- DbException.cs
- PreviewPageInfo.cs
- EntityObject.cs
- ComponentEvent.cs
- DataGridPageChangedEventArgs.cs
- DataListGeneralPage.cs
- Walker.cs
- ComboBoxHelper.cs
- CacheMode.cs
- PopOutPanel.cs
- Vector3DCollectionConverter.cs
- SafeHandles.cs
- FillErrorEventArgs.cs
- ListenDesigner.cs
- HtmlInputHidden.cs
- PropertyCollection.cs
- PropertyInformationCollection.cs
- PieceNameHelper.cs
- Renderer.cs
- GraphicsState.cs