Udostępnij za pośrednictwem


ServiceDescriptionFormatExtensionCollection(Object) Konstruktor

Definicja

Inicjuje nowe wystąpienie klasy 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)

Parametry

parent
Object

Obiekt, którego ta kolekcja jest elementem członkowskim.

Przykłady

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)

Uwagi

Ponieważ wiele klas w System.Web.Services.Description przestrzeni nazw uwidacznia Extensions właściwość reprezentującą ServiceDescriptionFormatExtensionCollectionobiekt , konstruktor przypisuje obiekt nadrzędny odpowiadający poziomowi w hierarchii WSDL (Web Services Description Language), gdzie bieżący ServiceDescriptionFormatExtensionCollection jest zagnieżdżony. Aby uzyskać więcej informacji na temat języka WSDL, zobacz specyfikację WSDL .

Dotyczy