Sdílet prostřednictvím


WebApplicationInformation.TrustLevel Vlastnost

Definice

Získá úroveň důvěryhodnosti aplikace.

public:
 property System::String ^ TrustLevel { System::String ^ get(); };
public string TrustLevel { get; }
member this.TrustLevel : string
Public ReadOnly Property TrustLevel As String

Hodnota vlastnosti

String

Úroveň důvěryhodnosti aplikace.

Příklady

Následující příklad ukazuje, jak získat informace na úrovni důvěryhodnosti aplikace.

public string GetApplicationTrustLevel()
{
    // Get the name of the application trust level.
    return (string.Format(
        "Application trust level: {0}",
        ApplicationInformation.TrustLevel));
}
Public Function GetApplicationTrustLevel() As String
    ' Get the name of the application trust level.
    Return String.Format( _
    "Application trust level: {0}", _
    ApplicationInformation.TrustLevel())
End Function 'GetApplicationTrustLevel

Poznámky

Tato vlastnost vyžaduje přístup k příslušným oprávněním. Projděte si část Oprávnění.

Platí pro