Compartir a través de


ManagementScopePath.ServerName Propiedad

Definición

Obtiene el nombre del servidor.

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

Valor de propiedad

Nombre del servidor.

Ejemplos

En el ejemplo siguiente se envían ManagementScopePath detalles al agente de escucha de seguimiento.

void TrcMSP(ManagementScopePath msp) {

    Trace.WriteLine("ApplicationPath = " + msp.ApplicationPath);
    Trace.WriteLine("Port = " + msp.Port.ToString());
    if (msp.FrameworkVersion != null &&
        !string.IsNullOrEmpty(msp.FrameworkVersion.Version.ToString()))
        Trace.WriteLine("FrameworkVersion = " + msp.FrameworkVersion.Version);
    Trace.WriteLine("ServerName = " + msp.ServerName);
    Trace.WriteLine("ServerReference = " + msp.ServerReference);
    Trace.WriteLine("SiteName = " + msp.SiteName);
} 

Se aplica a