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
- DataServiceStreamProviderWrapper.cs
- ContractInstanceProvider.cs
- ComponentCollection.cs
- ResolveNameEventArgs.cs
- WebContext.cs
- WindowsFormsHost.cs
- Cloud.cs
- RequestCacheEntry.cs
- Int32RectConverter.cs
- FormViewModeEventArgs.cs
- PreProcessInputEventArgs.cs
- ExtensionElement.cs
- BindingExpression.cs
- SqlUtil.cs
- controlskin.cs
- TraceHelpers.cs
- SerializableTypeCodeDomSerializer.cs
- UnmanagedHandle.cs
- CapabilitiesState.cs
- WebBrowserNavigatedEventHandler.cs
- RelOps.cs
- KerberosTicketHashIdentifierClause.cs
- PenContext.cs
- Page.cs
- WindowsContainer.cs
- TextDecorationCollectionConverter.cs
- DataPagerCommandEventArgs.cs
- RegisteredScript.cs
- HybridObjectCache.cs
- ImageUrlEditor.cs
- TraceLevelStore.cs
- WarningException.cs
- HttpProtocolImporter.cs
- TimerEventSubscription.cs
- Debugger.cs
- CaseKeyBox.ViewModel.cs
- InternalBase.cs
- ListDictionaryInternal.cs
- XamlFrame.cs
- FunctionImportElement.cs
- TreeViewItem.cs
- HelpInfo.cs
- HorizontalAlignConverter.cs
- ValidationVisibilityAttribute.cs
- DefaultWorkflowTransactionService.cs
- Material.cs
- SendingRequestEventArgs.cs
- FrameworkContextData.cs
- DateTimeOffsetStorage.cs
- MultipleViewPattern.cs
- PerformanceCounter.cs
- MethodBody.cs
- FormsAuthenticationUserCollection.cs
- RegexCompiler.cs
- METAHEADER.cs
- RSAPKCS1KeyExchangeFormatter.cs
- CacheModeConverter.cs
- XPathNodeInfoAtom.cs
- LockCookie.cs
- ProcessProtocolHandler.cs
- CurrentTimeZone.cs
- DataPointer.cs
- EncryptedKey.cs
- SystemWebSectionGroup.cs
- Section.cs
- Interlocked.cs
- InputManager.cs
- SchemaImporterExtensionElementCollection.cs
- DrawingContext.cs
- AsyncCompletedEventArgs.cs
- HtmlControlPersistable.cs
- FrameworkRichTextComposition.cs
- CompilerCollection.cs
- EqualityComparer.cs
- HostingEnvironment.cs
- IPipelineRuntime.cs
- IncomingWebRequestContext.cs
- XmlSchemaProviderAttribute.cs
- SqlUserDefinedTypeAttribute.cs
- EntityContainerEmitter.cs
- SelectingProviderEventArgs.cs
- InvalidAsynchronousStateException.cs
- IdentifierCollection.cs
- AppDomainAttributes.cs
- TextSpanModifier.cs
- PassportAuthenticationModule.cs
- WorkItem.cs
- WebServiceMethodData.cs
- SynchronizedInputAdaptor.cs
- TemplatePropertyEntry.cs
- cache.cs
- AsyncPostBackTrigger.cs
- HtmlControl.cs
- CompositeActivityMarkupSerializer.cs
- XmlSchemaElement.cs
- ContentAlignmentEditor.cs
- ReflectionTypeLoadException.cs
- ObjectSet.cs
- ColumnResizeAdorner.cs
- DetailsViewModeEventArgs.cs