WebApplicationInformation.MachineName Propriedade

Definição

Recebe o nome da máquina de aplicação.

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

Valor de Propriedade

O nome da máquina onde a aplicação está a correr.

Exemplos

O exemplo de código seguinte mostra como obter o nome da máquina.

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