次の方法で共有


ManagementScopePath.Port プロパティ

定義

ポート番号を取得します。

public:
 property int Port { int get(); };
public int Port { get; }
member this.Port : int
Public ReadOnly Property Port As Integer

プロパティ値

ポート番号。

次の例では、トレース リスナーに詳細を送信 ManagementScopePath します。

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);
} 

適用対象