Compartir a través de


WebApplicationInformation.MachineName Propiedad

Definición

Obtiene el nombre del equipo de la aplicación.

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

Valor de propiedad

String

Nombre del equipo en el que se ejecuta la aplicación.

Ejemplos

En el ejemplo de código siguiente se muestra cómo obtener el nombre de la 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

Se aplica a