ServiceDescriptionImporter.Style プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ServiceDescriptions 値がインポートされるときに生成されるコードのスタイル (クライアントまたはサーバー) を決定する値を取得または設定します。
public:
property System::Web::Services::Description::ServiceDescriptionImportStyle Style { System::Web::Services::Description::ServiceDescriptionImportStyle get(); void set(System::Web::Services::Description::ServiceDescriptionImportStyle value); };
public System.Web.Services.Description.ServiceDescriptionImportStyle Style { get; set; }
member this.Style : System.Web.Services.Description.ServiceDescriptionImportStyle with get, set
Public Property Style As ServiceDescriptionImportStyle
プロパティ値
ServiceDescriptionImportStyle 値のいずれか 1 つ。 既定値は、Client です。
例
次の例は、 プロパティの使用方法を Style 示しています。
// Generate a proxy client.
importer->Style = ServiceDescriptionImportStyle::Client;
// Generate a proxy client.
importer.Style = ServiceDescriptionImportStyle.Client;
注釈
プロパティが Style に Client設定されている場合、 ServiceDescriptionImporter は、記述された Web サービスの機能を提供するクライアント プロキシ クラスを呼び出すことによって生成します。
プロパティが Style に Server設定されている場合、 ServiceDescriptionImporter インスタンスは、記述された XML Web サービスの機能を実装せずに抽象クラスを生成します。 その後、これらの抽象クラスから継承するクラスを記述し、関連するメソッドを実装することで、それらを実装できます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET