ServiceDescription.Imports Property

 

Gets the collection of Import elements contained in the ServiceDescription.

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

Public ReadOnly Property Imports As ImportCollection

Property Value

Type: System.Web.Services.Description.ImportCollection

A collection of import elements contained in the service description.

The ImportCollection returned by this property corresponds to the list of import elements enclosed by the Web Services Description Language (WSDL) definitions root element. For more information about WSDL, see the specification at http://www.w3.org/TR/wsdl/.

Dim myServiceDescription As New ServiceDescription()
myServiceDescription = _
   ServiceDescription.Read("ServiceDescription_Imports_Input_VB.wsdl")
Dim myImportCollection As ImportCollection = myServiceDescription.Imports

' Create an Import.
Dim myImport As New Import()
myImport.Namespace = myServiceDescription.TargetNamespace

' Set the location for the Import.
myImport.Location = "http://www.contoso.com/"
myImportCollection.Add(myImport)
myServiceDescription.Write("ServiceDescription_Imports_Output_VB.wsdl")
myImportCollection.Clear()
myServiceDescription = _
   ServiceDescription.Read("ServiceDescription_Imports_Output_VB.wsdl")
myImportCollection = myServiceDescription.Imports
Console.WriteLine( _
   "The Import elements added to the ImportCollection are: ")
Dim i As Integer
For i = 0 To myImportCollection.Count - 1
   Console.WriteLine((i + 1).ToString() & ". " & _
      myImportCollection(i).Location)
Next i

.NET Framework
Available since 1.1
Return to top
Show: