Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / Security / Policy / UnionCodeGroup.cs / 3 / 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
- UICuesEvent.cs
- CapabilitiesUse.cs
- ManagementPath.cs
- XmlnsDefinitionAttribute.cs
- ReferenceEqualityComparer.cs
- AttributeData.cs
- ListViewTableCell.cs
- GridViewPageEventArgs.cs
- TypedTableGenerator.cs
- OleDbSchemaGuid.cs
- ModifierKeysValueSerializer.cs
- Point.cs
- ConditionalExpression.cs
- Part.cs
- ChannelPoolSettingsElement.cs
- WebAdminConfigurationHelper.cs
- GeneralTransform3DGroup.cs
- MatrixAnimationBase.cs
- ContextStaticAttribute.cs
- SafeLibraryHandle.cs
- WpfPayload.cs
- ListInitExpression.cs
- HttpConfigurationSystem.cs
- ManipulationStartedEventArgs.cs
- AbstractSvcMapFileLoader.cs
- TargetControlTypeAttribute.cs
- Viewport3DAutomationPeer.cs
- ModelItemDictionaryImpl.cs
- SQLStringStorage.cs
- ResizeGrip.cs
- EventToken.cs
- ResourceExpressionBuilder.cs
- UriTemplateDispatchFormatter.cs
- BypassElement.cs
- ControlCollection.cs
- XmlSchemaObjectTable.cs
- XD.cs
- Events.cs
- SqlXml.cs
- MetadataArtifactLoaderCompositeResource.cs
- ParagraphVisual.cs
- ClientCultureInfo.cs
- XmlKeywords.cs
- CustomExpressionEventArgs.cs
- DataGridViewColumnCollection.cs
- DiscoveryRequestHandler.cs
- ManifestResourceInfo.cs
- TableRowsCollectionEditor.cs
- ColumnMap.cs
- WindowsFormsLinkLabel.cs
- AspNetHostingPermission.cs
- HostExecutionContextManager.cs
- GregorianCalendarHelper.cs
- RoleGroup.cs
- DragCompletedEventArgs.cs
- MatrixValueSerializer.cs
- Debug.cs
- DeviceContexts.cs
- ellipse.cs
- WindowsTokenRoleProvider.cs
- HttpCookieCollection.cs
- InputProcessorProfiles.cs
- ArglessEventHandlerProxy.cs
- BamlLocalizabilityResolver.cs
- DataRecordInternal.cs
- DataGridAddNewRow.cs
- FontCollection.cs
- MailWebEventProvider.cs
- SerializationAttributes.cs
- WorkflowInspectionServices.cs
- PlainXmlDeserializer.cs
- WindowsStartMenu.cs
- UriWriter.cs
- HttpVersion.cs
- ValidatingPropertiesEventArgs.cs
- AtomEntry.cs
- SoapMessage.cs
- CharacterString.cs
- figurelength.cs
- PrinterUnitConvert.cs
- JoinQueryOperator.cs
- RegistrationServices.cs
- ClientSponsor.cs
- QueryIntervalOp.cs
- ProtocolsConfigurationEntry.cs
- Ray3DHitTestResult.cs
- ProtocolElementCollection.cs
- BinaryReader.cs
- NullReferenceException.cs
- GenericTextProperties.cs
- InputProcessorProfilesLoader.cs
- RangeEnumerable.cs
- GroupDescription.cs
- ListViewUpdatedEventArgs.cs
- ApplicationManager.cs
- SRGSCompiler.cs
- TransactionInterop.cs
- MetricEntry.cs
- ITextView.cs
- JournalEntryListConverter.cs