Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Security / Policy / UnionCodeGroup.cs / 1 / 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; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] 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 ) { } public override PolicyStatement Resolve( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); 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"); if (this.MembershipCondition.Check( evidence )) { return this.PolicyStatement; } else { return null; } } public override CodeGroup ResolveMatchingCodeGroups( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); 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; } } 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; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] 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 ) { } public override PolicyStatement Resolve( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); 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"); if (this.MembershipCondition.Check( evidence )) { return this.PolicyStatement; } else { return null; } } public override CodeGroup ResolveMatchingCodeGroups( Evidence evidence ) { if (evidence == null) throw new ArgumentNullException("evidence"); 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; } } 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
- ResourceWriter.cs
- ArraySortHelper.cs
- CfgParser.cs
- SessionEndingEventArgs.cs
- DocumentPageHost.cs
- SBCSCodePageEncoding.cs
- HttpValueCollection.cs
- NetDispatcherFaultException.cs
- DefaultExpressionVisitor.cs
- DebugController.cs
- Pair.cs
- Dictionary.cs
- SineEase.cs
- DetailsViewInsertedEventArgs.cs
- RelationshipManager.cs
- CallbackException.cs
- DataGridViewSelectedRowCollection.cs
- TimeZone.cs
- UnsafeNativeMethods.cs
- StateWorkerRequest.cs
- DataServiceBehavior.cs
- PipelineModuleStepContainer.cs
- ThreadExceptionDialog.cs
- FontStyle.cs
- WebScriptMetadataMessageEncoderFactory.cs
- ResourceAssociationSet.cs
- UriExt.cs
- ControlBindingsCollection.cs
- SpellerHighlightLayer.cs
- HttpCachePolicy.cs
- RootBrowserWindow.cs
- SystemBrushes.cs
- KnownTypesProvider.cs
- InputLanguage.cs
- FormsAuthenticationUserCollection.cs
- ScriptReferenceBase.cs
- WebPartActionVerb.cs
- WindowsSpinner.cs
- EntityDataSourceWrapper.cs
- PrimitiveType.cs
- ComEventsInfo.cs
- XmlAggregates.cs
- RequestQueue.cs
- NamedPipeActivation.cs
- loginstatus.cs
- XComponentModel.cs
- CompModSwitches.cs
- ToolStripButton.cs
- ReferencedCategoriesDocument.cs
- ViewStateModeByIdAttribute.cs
- ApplicationInfo.cs
- WizardStepBase.cs
- VisualStyleRenderer.cs
- FormViewUpdateEventArgs.cs
- X509Extension.cs
- Converter.cs
- UriSection.cs
- IisNotInstalledException.cs
- PrinterResolution.cs
- ConfigsHelper.cs
- XmlSchemaAnyAttribute.cs
- WSDualHttpBindingCollectionElement.cs
- ExtendedProperty.cs
- TypeNameConverter.cs
- DictionaryEntry.cs
- DeclarationUpdate.cs
- BitmapImage.cs
- EntityParameterCollection.cs
- MetadataCache.cs
- RecommendedAsConfigurableAttribute.cs
- TreeView.cs
- ContainsRowNumberChecker.cs
- TableItemStyle.cs
- X509ScopedServiceCertificateElementCollection.cs
- figurelength.cs
- ConfigurationSettings.cs
- EventRouteFactory.cs
- objectquery_tresulttype.cs
- ProviderException.cs
- BackgroundFormatInfo.cs
- CapabilitiesPattern.cs
- FormViewPagerRow.cs
- SemaphoreFullException.cs
- XmlTypeMapping.cs
- ViewManager.cs
- BmpBitmapEncoder.cs
- CodeCommentStatementCollection.cs
- UpdateTracker.cs
- SettingsAttributes.cs
- EndSelectCardRequest.cs
- ToolStripSystemRenderer.cs
- XmlSchemaSimpleContentRestriction.cs
- SmtpException.cs
- ContextStack.cs
- HttpProtocolImporter.cs
- TraceLevelHelper.cs
- ObjectSpanRewriter.cs
- HeaderedItemsControl.cs
- DeferredTextReference.cs
- ACL.cs