WorkflowServiceAttributes.Name Propiedad

Definición

Obtiene o establece el valor del atributo de nombre del elemento de servicio en el lenguaje de descripción de servicios Web (WSDL).

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

Valor de propiedad

Valor de la propiedad Name.

Ejemplos

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

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.Name = "CalculatorService";
Dim attributes As New WorkflowServiceAttributes()
attributes.Name = "CalculatorService"

Comentarios

Esta propiedad corresponde al <wsdl:service> elemento cuando se exporta. El valor predeterminado es null.

Se aplica a