Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Policy / UnionCodeGroup.cs / 1305376 / UnionCodeGroup.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // UnionCodeGroup.cs // //[....] // // Representation for code groups used for the policy mechanism // namespace System.Security.Policy { using System; using System.Security.Util; using System.Security; using System.Collections; using System.Diagnostics.Contracts; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] [Obsolete("This type is obsolete and will be removed in a future release of the .NET Framework. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] sealed public class UnionCodeGroup : CodeGroup, IUnionSemanticCodeGroup { internal UnionCodeGroup() : base() { } internal UnionCodeGroup( IMembershipCondition membershipCondition, PermissionSet permSet ) : base( membershipCondition, permSet ) { } public UnionCodeGroup( IMembershipCondition membershipCondition, PolicyStatement policy ) : base( membershipCondition, policy ) { } [System.Security.SecuritySafeCritical] // auto-generated public override PolicyStatement Resolve( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); Contract.EndContractBlock(); object usedEvidence = null; if (PolicyManager.CheckMembershipCondition(MembershipCondition, evidence, out usedEvidence)) { PolicyStatement thisPolicy = PolicyStatement; // PolicyStatement getter makes a copy for us // If any delay-evidence was used to generate this grant set, then we need to keep track of // that for potentially later forcing it to be verified. IDelayEvaluatedEvidence delayEvidence = usedEvidence as IDelayEvaluatedEvidence; bool delayEvidenceNeedsVerification = delayEvidence != null && !delayEvidence.IsVerified; if (delayEvidenceNeedsVerification) { thisPolicy.AddDependentEvidence(delayEvidence); } bool foundExclusiveChild = false; IEnumerator enumerator = this.Children.GetEnumerator(); while (enumerator.MoveNext() && !foundExclusiveChild) { PolicyStatement childPolicy = PolicyManager.ResolveCodeGroup(enumerator.Current as CodeGroup, evidence); if (childPolicy != null) { thisPolicy.InplaceUnion(childPolicy); if ((childPolicy.Attributes & PolicyStatementAttribute.Exclusive) == PolicyStatementAttribute.Exclusive) { foundExclusiveChild = true; } } } return thisPolicy; } else { return null; } } ///PolicyStatement IUnionSemanticCodeGroup.InternalResolve( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); Contract.EndContractBlock(); if (this.MembershipCondition.Check( evidence )) { return this.PolicyStatement; } else { return null; } } [System.Security.SecuritySafeCritical] // auto-generated public override CodeGroup ResolveMatchingCodeGroups( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); Contract.EndContractBlock(); if (this.MembershipCondition.Check( evidence )) { CodeGroup retGroup = this.Copy(); retGroup.Children = new ArrayList(); IEnumerator enumerator = this.Children.GetEnumerator(); while (enumerator.MoveNext()) { CodeGroup matchingGroups = ((CodeGroup)enumerator.Current).ResolveMatchingCodeGroups( evidence ); // If the child has a policy, we are done. if (matchingGroups != null) { retGroup.AddChild( matchingGroups ); } } return retGroup; } else { return null; } } [System.Security.SecuritySafeCritical] // auto-generated public override CodeGroup Copy() { UnionCodeGroup group = new UnionCodeGroup(); group.MembershipCondition = this.MembershipCondition; group.PolicyStatement = this.PolicyStatement; group.Name = this.Name; group.Description = this.Description; IEnumerator enumerator = this.Children.GetEnumerator(); while (enumerator.MoveNext()) { group.AddChild( (CodeGroup)enumerator.Current ); } return group; } public override String MergeLogic { get { return Environment.GetResourceString( "MergeLogic_Union" ); } } internal override String GetTypeName() { return "System.Security.Policy.UnionCodeGroup"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // UnionCodeGroup.cs // // [....] // // Representation for code groups used for the policy mechanism // namespace System.Security.Policy { using System; using System.Security.Util; using System.Security; using System.Collections; using System.Diagnostics.Contracts; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] [Obsolete("This type is obsolete and will be removed in a future release of the .NET Framework. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] sealed public class UnionCodeGroup : CodeGroup, IUnionSemanticCodeGroup { internal UnionCodeGroup() : base() { } internal UnionCodeGroup( IMembershipCondition membershipCondition, PermissionSet permSet ) : base( membershipCondition, permSet ) { } public UnionCodeGroup( IMembershipCondition membershipCondition, PolicyStatement policy ) : base( membershipCondition, policy ) { } [System.Security.SecuritySafeCritical] // auto-generated public override PolicyStatement Resolve( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); Contract.EndContractBlock(); object usedEvidence = null; if (PolicyManager.CheckMembershipCondition(MembershipCondition, evidence, out usedEvidence)) { PolicyStatement thisPolicy = PolicyStatement; // PolicyStatement getter makes a copy for us // If any delay-evidence was used to generate this grant set, then we need to keep track of // that for potentially later forcing it to be verified. IDelayEvaluatedEvidence delayEvidence = usedEvidence as IDelayEvaluatedEvidence; bool delayEvidenceNeedsVerification = delayEvidence != null && !delayEvidence.IsVerified; if (delayEvidenceNeedsVerification) { thisPolicy.AddDependentEvidence(delayEvidence); } bool foundExclusiveChild = false; IEnumerator enumerator = this.Children.GetEnumerator(); while (enumerator.MoveNext() && !foundExclusiveChild) { PolicyStatement childPolicy = PolicyManager.ResolveCodeGroup(enumerator.Current as CodeGroup, evidence); if (childPolicy != null) { thisPolicy.InplaceUnion(childPolicy); if ((childPolicy.Attributes & PolicyStatementAttribute.Exclusive) == PolicyStatementAttribute.Exclusive) { foundExclusiveChild = true; } } } return thisPolicy; } else { return null; } } ///PolicyStatement IUnionSemanticCodeGroup.InternalResolve( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); Contract.EndContractBlock(); if (this.MembershipCondition.Check( evidence )) { return this.PolicyStatement; } else { return null; } } [System.Security.SecuritySafeCritical] // auto-generated public override CodeGroup ResolveMatchingCodeGroups( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); Contract.EndContractBlock(); if (this.MembershipCondition.Check( evidence )) { CodeGroup retGroup = this.Copy(); retGroup.Children = new ArrayList(); IEnumerator enumerator = this.Children.GetEnumerator(); while (enumerator.MoveNext()) { CodeGroup matchingGroups = ((CodeGroup)enumerator.Current).ResolveMatchingCodeGroups( evidence ); // If the child has a policy, we are done. if (matchingGroups != null) { retGroup.AddChild( matchingGroups ); } } return retGroup; } else { return null; } } [System.Security.SecuritySafeCritical] // auto-generated public override CodeGroup Copy() { UnionCodeGroup group = new UnionCodeGroup(); group.MembershipCondition = this.MembershipCondition; group.PolicyStatement = this.PolicyStatement; group.Name = this.Name; group.Description = this.Description; IEnumerator enumerator = this.Children.GetEnumerator(); while (enumerator.MoveNext()) { group.AddChild( (CodeGroup)enumerator.Current ); } return group; } public override String MergeLogic { get { return Environment.GetResourceString( "MergeLogic_Union" ); } } internal override String GetTypeName() { return "System.Security.Policy.UnionCodeGroup"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParameterCollection.cs
- Freezable.cs
- ListBox.cs
- ModelUIElement3D.cs
- externdll.cs
- Model3DGroup.cs
- SqlRecordBuffer.cs
- XDeferredAxisSource.cs
- AncillaryOps.cs
- WorkflowInlining.cs
- PropertyRef.cs
- GridPattern.cs
- Solver.cs
- ComponentChangingEvent.cs
- EmptyStringExpandableObjectConverter.cs
- LinqDataSourceUpdateEventArgs.cs
- UInt32Converter.cs
- InlineCollection.cs
- CursorConverter.cs
- PackageDigitalSignature.cs
- DesignSurfaceServiceContainer.cs
- Border.cs
- ExpressionBindingCollection.cs
- ConnectionsZoneAutoFormat.cs
- MsmqActivation.cs
- Canvas.cs
- MediaContextNotificationWindow.cs
- DictionaryBase.cs
- TreeBuilderXamlTranslator.cs
- TypeUnloadedException.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- MeshGeometry3D.cs
- Line.cs
- MessageProtectionOrder.cs
- Char.cs
- TextBoxAutomationPeer.cs
- ZipIOLocalFileHeader.cs
- CompletedAsyncResult.cs
- TickBar.cs
- TailPinnedEventArgs.cs
- TransactionValidationBehavior.cs
- RefExpr.cs
- EtwTrackingParticipant.cs
- ImageCodecInfoPrivate.cs
- FrameworkContentElementAutomationPeer.cs
- DataSourceConverter.cs
- DiscoveryClientChannelFactory.cs
- MsmqIntegrationMessageProperty.cs
- XPathQilFactory.cs
- SqlDataSourceStatusEventArgs.cs
- SpellerStatusTable.cs
- DesignObjectWrapper.cs
- StorageEntitySetMapping.cs
- WorkflowRuntime.cs
- WebHttpDispatchOperationSelector.cs
- ResourcePermissionBase.cs
- IdleTimeoutMonitor.cs
- ClientRoleProvider.cs
- EnumMember.cs
- Html32TextWriter.cs
- Variant.cs
- COMException.cs
- BulletChrome.cs
- _StreamFramer.cs
- HelpProvider.cs
- HtmlToClrEventProxy.cs
- InheritedPropertyChangedEventArgs.cs
- SecurityDocument.cs
- XsltContext.cs
- DeviceContext2.cs
- PagesSection.cs
- ExtensionWindow.cs
- FacetEnabledSchemaElement.cs
- ToolStripInSituService.cs
- TemplateAction.cs
- FormatConvertedBitmap.cs
- OdbcHandle.cs
- SubMenuStyle.cs
- SapiInterop.cs
- FilteredAttributeCollection.cs
- MultiView.cs
- Sql8ConformanceChecker.cs
- DefinitionUpdate.cs
- EntityDataSourceViewSchema.cs
- TransactionInformation.cs
- SecurityDocument.cs
- _LocalDataStore.cs
- FrugalList.cs
- NonParentingControl.cs
- ScriptControlDescriptor.cs
- WebPartManagerInternals.cs
- TakeOrSkipWhileQueryOperator.cs
- Win32Exception.cs
- WebPartCatalogCloseVerb.cs
- Overlapped.cs
- ChangePasswordAutoFormat.cs
- CodeDirectionExpression.cs
- BulletedListDesigner.cs
- KeyPullup.cs
- QueryPageSettingsEventArgs.cs