Compartir vía


WorkflowServiceAttributes.Namespace Propiedad

Definición

Obtiene o establece el valor del espacio de nombres de destino del servicio en el lenguaje de descripción de servicios 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

Valor de propiedad

String

Valor de la propiedad Namespace.

Ejemplos

En el ejemplo siguiente se muestra cómo se obtiene acceso a la propiedad Namespace.

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

Comentarios

Este valor corresponde al valor del targetNamespace atributo para el <wsdl:definitions> elemento que contiene el <wsdl:service> elemento cuando se exporta. El valor predeterminado es null.

Se aplica a