共用方式為


FirstMatchCodeGroup.ResolveMatchingCodeGroups(Evidence) 方法

定義

解析符合的程式碼群組。

public:
 override System::Security::Policy::CodeGroup ^ ResolveMatchingCodeGroups(System::Security::Policy::Evidence ^ evidence);
public override System.Security.Policy.CodeGroup ResolveMatchingCodeGroups (System.Security.Policy.Evidence evidence);
override this.ResolveMatchingCodeGroups : System.Security.Policy.Evidence -> System.Security.Policy.CodeGroup
Public Overrides Function ResolveMatchingCodeGroups (evidence As Evidence) As CodeGroup

參數

evidence
Evidence

組件的辨識項。

傳回

CodeGroup,是符合程式碼群組的樹狀結構的根 (Root)。

例外狀況

evidence 參數為 null

範例

下列程式代碼示範如何使用 ResolveMatchingCodeGroups 方法來解析相符的程式代碼群組。 此程式代碼範例是針對 類別提供的較大範例的 FirstMatchCodeGroup 一部分。

Assembly^ assembly = Members::typeid->Assembly;
Evidence^ evidence = assembly->Evidence;
CodeGroup^ resolvedCodeGroup =
   codeGroup->ResolveMatchingCodeGroups( evidence );
Assembly assembly = typeof(Members).Assembly;
Evidence evidence = assembly.Evidence;
CodeGroup resolvedCodeGroup = 
    codeGroup.ResolveMatchingCodeGroups(evidence);
Dim executingAssembly As [Assembly] = Me.GetType().Assembly
Dim evidence As Evidence = executingAssembly.Evidence
Dim resolvedCodeGroup As CodeGroup
resolvedCodeGroup = codegroup.ResolveMatchingCodeGroups(Evidence)

備註

為載入元件的指定辨識項提供辨識項,此方法會先檢查成員資格條件,以針對指定的辨識項評估程式代碼群組。 如果有相符項目,這個方法會傳回根程式代碼群組。 傳回的程式代碼群組包含子程式代碼群組,接著可以視需要有子程式代碼群組,以反映所提供辨識項相符的完整程式代碼群組。

針對第一個相符的程式代碼群組,每個子程式代碼群組的成員資格條件都會根據新增的順序來測試辨識項;只會使用辨識項集解析第一個相符專案。 如果沒有相符專案,則會套用父系第一個比對程式代碼群組的原則語句。 相符的子程式代碼群組類型會根據這些子群組的方法運作方式,決定其下的所有子群組如何 ResolveMatchingCodeGroups 套用。

適用於