ServiceDescriptionFormatExtensionCollection(Object) Construtor

Definição

Inicializa uma nova instância da classe ServiceDescriptionFormatExtensionCollection.

public:
 ServiceDescriptionFormatExtensionCollection(System::Object ^ parent);
public ServiceDescriptionFormatExtensionCollection (object parent);
new System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection : obj -> System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection
Public Sub New (parent As Object)

Parâmetros

parent
Object

O objeto do qual esta coleção é um membro.

Exemplos

ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Sample_cpp.wsdl" );
ServiceDescriptionFormatExtensionCollection^ myCollection = gcnew ServiceDescriptionFormatExtensionCollection( myServiceDescription );
ServiceDescription myServiceDescription =
   ServiceDescription.Read("Sample_CS.wsdl");
ServiceDescriptionFormatExtensionCollection  myCollection =
   new ServiceDescriptionFormatExtensionCollection(myServiceDescription);
Dim myServiceDescription As ServiceDescription = _
        ServiceDescription.Read("Sample_VB.wsdl")
Dim myCollection As New ServiceDescriptionFormatExtensionCollection(myServiceDescription)

Comentários

Como muitas das classes no System.Web.Services.Description namespace expõem uma Extensions propriedade que representa um ServiceDescriptionFormatExtensionCollection, o construtor atribui um objeto pai correspondente ao nível dentro da hierarquia WSDL (Web Services Description Language) em que o atual ServiceDescriptionFormatExtensionCollection está aninhado. Para obter mais informações sobre WSDL, confira a especificação WSDL.

Aplica-se a