WebApplicationInformation.MachineName Proprietà

Definizione

Ottiene il nome del computer dell'applicazione.

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

Valore della proprietà

String

Nome del computer su cui viene eseguita l'applicazione.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere il nome del computer.

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

Si applica a