Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Shared / MS / Internal / Permissions / InternalPermissions.cs / 1305600 / InternalPermissions.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Internal Permissions. // These are classes for permissions that will be asserted/demanded internally. // But will be granted in full-trust. // Only internal avalon code will assert these permissions. // // Using them allows the following: // We can have very specific targeted asserts. So for example instead of // a blanket assert for Unmanaged code instead we can have very granular permissiosn. // // They are still available by default in full-trust. // // Currently the only way to detect User-Initiated actions is for commands. // So by associating a custom permisison with a command we can very tightly scope // the set of operations allowed. // // From MSDN: // // When you inherit from CodeAccessPermission, you must also implement the IUnrestrictedPermission interface. // The following CodeAccessPermission members must be overridden: Copy, Intersect, IsSubsetOf, ToXml, FromXml, and Union. // You must also define a constructor that takes a PermissionState as its only parameter. // You must apply the SerializableAttribute attribute to a class that inherits from CodeAccessPermission. // // InternalParameterlessPermissionBase is a base class that requires derived classes to only support one // PermissionState (Unrestricted) and to have no parameters/properties/state. As above, derived classes must also be // [Serializable] and have a public constructor that takes PermissionState. // // History: // 02/28/05 : marka - Created //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Text; using System.Security; using System.Security.Permissions; using System.Windows; #if WINDOWS_BASE using MS.Internal.WindowsBase; #endif namespace MS.Internal.Permissions { // // derive all InternalPermissions from this. // Provides default implementations of several overridable methods on CodeAccessPermission // [FriendAccessAllowed] [Serializable] internal abstract class InternalParameterlessPermissionBase : CodeAccessPermission, IUnrestrictedPermission { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructor protected InternalParameterlessPermissionBase(PermissionState state) { Debug.Assert(GetType().IsSerializable); switch (state) { case PermissionState.Unrestricted: break; case PermissionState.None: default: throw new ArgumentException(SR.Get(SRID.InvalidPermissionStateValue, state), "state"); } } #endregion Constructor //------------------------------------------------------ // // Interface Methods // //----------------------------------------------------- #region Interface Methods public bool IsUnrestricted() { return true; } #endregion Interface Methods //------------------------------------------------------ // // Public Methods // //------------------------------------------------------ #region Public Methods public override SecurityElement ToXml() { SecurityElement element = new SecurityElement("IPermission"); Type type = this.GetType(); StringBuilder AssemblyName = new StringBuilder(type.Assembly.ToString()); AssemblyName.Replace('\"', '\''); element.AddAttribute("class", type.FullName + ", " + AssemblyName); element.AddAttribute("version", "1"); return element; } public override void FromXml( SecurityElement elem) { // from XML is easy - there is no state. } public override IPermission Intersect(IPermission target) { if(null == target) { return null; } if ( target.GetType() != this.GetType() ) { throw new ArgumentException( SR.Get(SRID.InvalidPermissionType, this.GetType().FullName), "target"); } // there is no state. The intersection of 2 permissions of the same type is the same permission. return this.Copy(); } public override bool IsSubsetOf(IPermission target) { if(null == target) { return false; } if ( target.GetType() != this.GetType() ) { throw new ArgumentException( SR.Get(SRID.InvalidPermissionType, this.GetType().FullName), "target"); } // there is no state. If you are the same type as me - you are a subset of me. return true; } public override IPermission Union(IPermission target) { if(null == target) { return null; } if ( target.GetType() != this.GetType() ) { throw new ArgumentException( SR.Get(SRID.InvalidPermissionType, this.GetType().FullName), "target"); } // there is no state. The union of 2 permissions of the same type is the same permission. return this.Copy(); } #endregion Public Methods } } // 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
- _Events.cs
- InstanceNameConverter.cs
- LogPolicy.cs
- PageThemeBuildProvider.cs
- WebConfigurationHostFileChange.cs
- TransportChannelFactory.cs
- XPathBinder.cs
- ThreadExceptionEvent.cs
- Calendar.cs
- StrokeDescriptor.cs
- XmlChildEnumerator.cs
- IdentityVerifier.cs
- URLMembershipCondition.cs
- FrugalMap.cs
- MetadataArtifactLoaderComposite.cs
- XmlComment.cs
- SQLByte.cs
- SessionPageStatePersister.cs
- DeclarativeCatalogPart.cs
- FormViewCommandEventArgs.cs
- TakeOrSkipWhileQueryOperator.cs
- XmlSchemaAll.cs
- WorkflowRuntimeServiceElement.cs
- CodeTypeReference.cs
- SharedPersonalizationStateInfo.cs
- UnmanagedMemoryStreamWrapper.cs
- CrossSiteScriptingValidation.cs
- SvcMapFileSerializer.cs
- BaseTemplateCodeDomTreeGenerator.cs
- VirtualPathUtility.cs
- XamlWriter.cs
- SmiMetaDataProperty.cs
- Camera.cs
- DbConnectionOptions.cs
- SchemaAttDef.cs
- OracleEncoding.cs
- FSWPathEditor.cs
- codemethodreferenceexpression.cs
- InputLanguageManager.cs
- TextRenderer.cs
- IsolationInterop.cs
- AsynchronousChannel.cs
- SqlIdentifier.cs
- XmlDataSource.cs
- Int32AnimationUsingKeyFrames.cs
- ColorPalette.cs
- XmlChildNodes.cs
- SingleStorage.cs
- Message.cs
- PackageRelationshipSelector.cs
- SecurityTokenSerializer.cs
- XmlNodeReader.cs
- DBBindings.cs
- RectangleGeometry.cs
- CopyNamespacesAction.cs
- SqlError.cs
- TextRangeEditLists.cs
- ExpressionConverter.cs
- PKCS1MaskGenerationMethod.cs
- Internal.cs
- UTF8Encoding.cs
- BaseValidator.cs
- MonthCalendarDesigner.cs
- Odbc32.cs
- ItemCheckedEvent.cs
- TagMapCollection.cs
- StickyNote.cs
- BlobPersonalizationState.cs
- IPGlobalProperties.cs
- Operator.cs
- Timeline.cs
- WindowsGrip.cs
- StyleCollection.cs
- MessageQueuePermission.cs
- ProfileGroupSettingsCollection.cs
- SyndicationFeed.cs
- SerialPort.cs
- LassoHelper.cs
- Token.cs
- RecognizerBase.cs
- BamlLocalizableResource.cs
- Hyperlink.cs
- BitmapEffectInput.cs
- ListItemCollection.cs
- SQLByte.cs
- WebPartExportVerb.cs
- GridViewUpdateEventArgs.cs
- SamlAuthorizationDecisionStatement.cs
- ReadOnlyNameValueCollection.cs
- ItemsPresenter.cs
- FontCollection.cs
- PropertyInformation.cs
- FilterQuery.cs
- DesignTimeVisibleAttribute.cs
- ButtonField.cs
- ExtenderControl.cs
- DoubleLink.cs
- VisualCollection.cs
- SqlConnectionPoolProviderInfo.cs
- ListViewInsertEventArgs.cs