次の方法で共有


ModulePage.CreateProxy(Type) メソッド

定義

ページのサービス プロキシを取得します。

protected:
 Microsoft::Web::Management::Client::ModuleServiceProxy ^ CreateProxy(Type ^ proxyType);
protected Microsoft.Web.Management.Client.ModuleServiceProxy CreateProxy (Type proxyType);
member this.CreateProxy : Type -> Microsoft.Web.Management.Client.ModuleServiceProxy
Protected Function CreateProxy (proxyType As Type) As ModuleServiceProxy

パラメーター

proxyType
Type

Type派生クラスの ModuleServiceProxy

戻り値

ModuleServiceProxyページの オブジェクト。

次の例では、モジュールの初期化時にサービス プロキシを作成します。

void initProxyRefresh(bool initialActivation) {

    if (initialActivation) {
        _serviceProxy = (DemoModuleServiceProxy)
            CreateProxy(typeof(DemoModuleServiceProxy));
        Refresh();
    }
}

適用対象