次の方法で共有


WorkflowServiceAttributes.Namespace プロパティ

定義

Web サービス記述言語 (WSDL) でのサービスのターゲット名前属性の値を取得または設定します。

public:
 property System::String ^ Namespace { System::String ^ get(); void set(System::String ^ value); };
public string Namespace { get; set; }
member this.Namespace : string with get, set
Public Property Namespace As String

プロパティ値

String

名前空間プロパティの値。

次の例は、Namespace プロパティのアクセス方法を示しています。

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.Namespace = "Microsoft.Samples.WorkflowServices.SampleCode";
Dim attributes As New WorkflowServiceAttributes()
attributes.Namespace = "Microsoft.Samples.WorkflowServices.SampleCode"

注釈

この値は、エクスポート時に要素を targetNamespace 含む要素の <wsdl:definitions> 属性の値に <wsdl:service> 対応します。 既定値は、null です。

適用対象