次の方法で共有


Connection.EndConfigurationManagement メソッド

定義

構成パスを現在の接続のルートに設定します。

オーバーロード

EndConfigurationManagement()

現在の接続のルートの構成パスを設定します。

EndConfigurationManagement(Type)

指定したページの種類を使用して、現在の接続のルートの構成パスを設定します。

EndConfigurationManagement()

現在の接続のルートの構成パスを設定します。

public:
 bool EndConfigurationManagement();
public bool EndConfigurationManagement ();
member this.EndConfigurationManagement : unit -> bool
Public Function EndConfigurationManagement () As Boolean

戻り値

true プロパティ値が ConfigurationPath 正常にリセットされた場合は 。それ以外の場合 falseは 。

void doEndConfigMgmt(IServiceProvider sp) {

    Connection con = (Connection)sp.GetService(typeof(Connection));
    bool b = con.EndConfigurationManagement();
    if (b != true)
        ShowMessage("EndConfigurationManagement returned false", "Error");

}

注釈

このメソッドが成功すると、 ConfigurationPath プロパティは オブジェクトの Connection ルートに設定され、そこからナビゲーションが続行されます。

注意

ルート Connection オブジェクトは、サイト、サーバー、またはアプリケーションになります。

適用対象

EndConfigurationManagement(Type)

指定したページの種類を使用して、現在の接続のルートの構成パスを設定します。

public:
 bool EndConfigurationManagement(Type ^ pageType);
public bool EndConfigurationManagement (Type pageType);
member this.EndConfigurationManagement : Type -> bool
Public Function EndConfigurationManagement (pageType As Type) As Boolean

パラメーター

pageType
Type

ページの種類。

戻り値

true プロパティがオブジェクトの ConfigurationPath ルートに設定されている場合は 。それ以外の Connection 場合 falseは 。

void doEndConfigMgmtSvr(IServiceProvider sp) {

    Connection con = (Connection)sp.GetService(typeof(Connection));
    IControlPanel controlPanel = (IControlPanel)GetService(typeof(IControlPanel));

    bool b = con.EndConfigurationManagement(controlPanel.ControlPanelPage.PageType);
    if (b != true)
        ShowMessage("EndConfigurationManagement returned false", "Error");

}

注釈

このメソッドが成功すると、 ConfigurationPath プロパティは オブジェクトの既定の Connection サイトに設定され、そこからナビゲーションが続行されます。

注意

ルート Connection オブジェクトは、サイト、サーバー、またはアプリケーションになります。

適用対象