ServiceDescriptionFormatExtensionCollection(Object) Construtor
Definição
Inicializa uma nova instância da classe ServiceDescriptionFormatExtensionCollection.Initializes a new instance of the ServiceDescriptionFormatExtensionCollection class.
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.The object of which this collection is a member.
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 representando um ServiceDescriptionFormatExtensionCollection , o construtor atribui um objeto pai correspondente ao nível na hierarquia WSDL (Web Services Description Language) onde o atual ServiceDescriptionFormatExtensionCollection está aninhado.Since many of the classes in the System.Web.Services.Description namespace expose an Extensions property representing a ServiceDescriptionFormatExtensionCollection, the constructor assigns a parent object corresponding to the level within the Web Services Description Language (WSDL) hierarchy where the current ServiceDescriptionFormatExtensionCollection is nested. Para obter mais informações sobre WSDL, confira a especificação WSDL.For more information about WSDL, see the WSDL specification.