Прочетете на английски Редактиране

Споделяне чрез


PolicyLevel.StoreLocation Property

Definition

Gets the path where the policy file is stored.

C#
public string StoreLocation { get; }

Property Value

The path where the policy file is stored, or null if the PolicyLevel does not have a storage location.

Examples

The following code shows how to display the store location for a policy level. This code example is part of a larger example provided for the PolicyLevel class.

C#
// Demonstrate the use of ResolvePolicy for passed in evidence.
private static void CheckEvidence(Evidence evidence)
{
    // Display the code groups to which the evidence belongs.
    Console.WriteLine("ResolvePolicy for the given evidence.");
    Console.WriteLine("\tCurrent evidence belongs to the following code groups:");
    IEnumerator policyEnumerator = SecurityManager.PolicyHierarchy();
    // Resolve the evidence at all the policy levels.
    while (policyEnumerator.MoveNext())
    {

        PolicyLevel currentLevel = (PolicyLevel)policyEnumerator.Current;	
        CodeGroup cg1 = currentLevel.ResolveMatchingCodeGroups(evidence);
        Console.WriteLine("\n\t" + currentLevel.Label + " Level");
        Console.WriteLine("\t\tCodeGroup = " + cg1.Name);
        IEnumerator cgE1 = cg1.Children.GetEnumerator();
        while (cgE1.MoveNext())
        {
            Console.WriteLine("\t\t\tGroup = " + ((CodeGroup)cgE1.Current).Name);
        }
        Console.WriteLine("\tStoreLocation = " + currentLevel.StoreLocation);
    }

    return;
}

Applies to

Продукт Версии
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10