次の方法で共有


ProxyGenerator.GetClientProxyScript メソッド

定義

指定した型のプロキシ生成コードを取得します。

オーバーロード

GetClientProxyScript(Type, String, Boolean)

指定した型のプロキシ生成コードを取得します。

GetClientProxyScript(Type, String, Boolean, ServiceEndpoint)

パスとサービス エンドポイントを使用して、指定した型のプロキシ生成コードを取得します。

GetClientProxyScript(Type, String, Boolean)

指定した型のプロキシ生成コードを取得します。

public:
 static System::String ^ GetClientProxyScript(Type ^ type, System::String ^ path, bool debug);
public static string GetClientProxyScript (Type type, string path, bool debug);
static member GetClientProxyScript : Type * string * bool -> string
Public Shared Function GetClientProxyScript (type As Type, path As String, debug As Boolean) As String

パラメーター

type
Type

スクリプトを取得するオブジェクトの型。

path
String

エンドポイントの位置。

debug
Boolean

XML コード コメントを含める場合は true。それ以外の場合は false

戻り値

プロキシ生成コード。

例外

type パラメーターまたは path パラメーターが null です。

指定された型はプロキシ生成ではサポートされません。

注釈

メソッドは GetClientProxyScript 、Web サービス、Windows Communication Foundation (WCF) サービス、または 属性が適用されている WebMethodAttribute 静的ページ メソッドのプロキシ生成 ECMAScript (JavaScript) を返します。 パラメーターには type 、Web サービス クラス、WCF サービス クラス、またはページ クラス ASP.NET 型が含まれています。 型が WCF サービス クラスまたはインターフェイスの場合、クラスまたはインターフェイスに 属性が適用されている ServiceContractAttribute 必要があります。 パラメーターtrueが のdebug場合、結果のコードには、Visual Studio またはその他の開発環境での IntelliSense のサポートに使用できる XML コード コメントが含まれます。 その結果、生成されたスクリプトのサイズが大きくなります。

こちらもご覧ください

適用対象

GetClientProxyScript(Type, String, Boolean, ServiceEndpoint)

パスとサービス エンドポイントを使用して、指定した型のプロキシ生成コードを取得します。

public:
 static System::String ^ GetClientProxyScript(Type ^ type, System::String ^ path, bool debug, System::ServiceModel::Description::ServiceEndpoint ^ serviceEndpoint);
public static string GetClientProxyScript (Type type, string path, bool debug, System.ServiceModel.Description.ServiceEndpoint serviceEndpoint);
static member GetClientProxyScript : Type * string * bool * System.ServiceModel.Description.ServiceEndpoint -> string
Public Shared Function GetClientProxyScript (type As Type, path As String, debug As Boolean, serviceEndpoint As ServiceEndpoint) As String

パラメーター

type
Type

スクリプトを取得するオブジェクトの型。

path
String

エンドポイントの位置。

debug
Boolean

XML コード コメントを含める場合は true。それ以外の場合は false

serviceEndpoint
ServiceEndpoint

サービス エンドポイント。

戻り値

プロキシ生成コード。

例外

type パラメーターまたは path パラメーターが null です。

指定された型はプロキシ生成ではサポートされません。

注釈

メソッドは GetClientProxyScript 、Web サービス、Windows Communication Foundation (WCF) サービス、または 属性が適用されている WebMethodAttribute 静的ページ メソッドのプロキシ生成 ECMAScript (JavaScript) を返します。 パラメーターには type 、Web サービス クラス、WCF サービス クラス、またはページ クラス ASP.NET 型が含まれています。 型が WCF サービス クラスまたはインターフェイスの場合、クラスまたはインターフェイスに 属性が適用されている ServiceContractAttribute 必要があります。 パラメーターtrueが のdebug場合、結果のコードには、Visual Studio またはその他の開発環境での IntelliSense のサポートに使用できる XML コード コメントが含まれます。 その結果、生成されたスクリプトのサイズが大きくなります。

こちらもご覧ください

適用対象