Поделиться через


WebApplicationInformation.TrustLevel Свойство

Определение

Получает уровень доверия приложения.

public:
 property System::String ^ TrustLevel { System::String ^ get(); };
public string TrustLevel { get; }
member this.TrustLevel : string
Public ReadOnly Property TrustLevel As 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

Комментарии

Для доступа к этому свойству требуются соответствующие разрешения. См. раздел Разрешения.

Применяется к