Compartilhar via


WebApplicationInformation.MachineName Propriedade

Definição

Obtém o nome do computador do aplicativo.

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

Valor da propriedade

String

O nome do computador em que o aplicativo está em execução.

Exemplos

O exemplo de código a seguir mostra como obter o nome do computador.

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

Aplica-se a