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 Sub New (
	parent As Object
)

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/.

Dim myServiceDescription As ServiceDescription = _
        ServiceDescription.Read("Sample_VB.wsdl")
Dim myCollection As New ServiceDescriptionFormatExtensionCollection(myServiceDescription)

.NET Framework
Available since 1.1
Return to top
Show: