次の方法で共有


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 属性が適用されている必要があります。 debug パラメーターが trueされている場合、結果のコードには、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 属性が適用されている必要があります。 debug パラメーターが trueされている場合、結果のコードには、Visual Studio またはその他の開発環境で IntelliSense のサポートに使用できる XML コード コメントが含まれます。 その結果、生成されるスクリプトのサイズが大きくなります。

こちらもご覧ください

適用対象