ModulePage.GetScopeStatusSummary(Connection, String, String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
管理スコープの状態の概要を取得します。
protected:
static System::String ^ GetScopeStatusSummary(Microsoft::Web::Management::Client::Connection ^ connection, System::String ^ configurationPath, System::String ^ locationSubPath);
protected static string GetScopeStatusSummary (Microsoft.Web.Management.Client.Connection connection, string configurationPath, string locationSubPath);
static member GetScopeStatusSummary : Microsoft.Web.Management.Client.Connection * string * string -> string
パラメーター
- connection
- Connection
Connectionオブジェクトに関連付ModulePageけられている オブジェクト。
- configurationPath
- String
スコープの構成パス。
- locationSubPath
- String
場所タグの名前。
戻り値
構成情報の説明。
例
次の例では、ページがサーバー接続レベルにある場合に、次の出力を表示します。
GetScopeStatusSummary = Configuration: 'localhost' applicationHost.config or root web.config
void testScopeStat() {
Connection con = (Connection) GetService(typeof(Connection));
if (con == null)
return;
SH.Con = con;
string scopeStatSum =
GetScopeStatusSummary(
this.Connection, "", ""
);
Trace.WriteLine("GetScopeStatusSummary = "
+ scopeStatSum);
}
注釈
パラメーターと locationSubPath
パラメーターには configurationPath
を指定null
できます。