WebApplicationInformation.TrustLevel Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il livello di attendibilità dell'applicazione.
public:
property System::String ^ TrustLevel { System::String ^ get(); };
public string TrustLevel { get; }
member this.TrustLevel : string
Public ReadOnly Property TrustLevel As String
Valore della proprietà
Livello di attendibilità dell'applicazione.
Esempio
Nell'esempio seguente viene illustrato come ottenere le informazioni a livello di attendibilità dell'applicazione.
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
Commenti
Questa proprietà richiede autorizzazioni appropriate per l'accesso. Fare riferimento alla sezione Autorizzazioni.