次の方法で共有


WebApplicationInformation.TrustLevel プロパティ

定義

アプリケーションの信頼レベルを取得します。

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

プロパティ値

String

アプリケーションの信頼レベル。

次の例は、アプリケーション信頼レベルの情報を取得する方法を示しています。

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

注釈

このプロパティにアクセスするには、適切なアクセス許可が必要です。 「アクセス許可」セクションを参照してください。

適用対象