ServiceDescriptionFormatExtensionCollection Constructor (Object^)

 

Initializes a new instance of the ServiceDescriptionFormatExtensionCollection class.

Namespace:   System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
ServiceDescriptionFormatExtensionCollection(
	Object^ parent
)

Parameters

parent
Type: System::Object^

The object of which this collection is a member.

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. For more information about WSDL, see the specification at http://www.w3.org/TR/wsdl/.

ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Sample_cpp.wsdl" );
ServiceDescriptionFormatExtensionCollection^ myCollection = gcnew ServiceDescriptionFormatExtensionCollection( myServiceDescription );

.NET Framework
Available since 1.1
Return to top
Show: