Import.Namespace Property

 

Gets or sets the value of the XML namespace attribute of the import element.

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

Public Property Namespace As String

Property Value

Type: System.String

The value of the XML namespace attribute of the import element.

' Creates an Import object with namespace and location.
Public Shared Function CreateImport(targetNamespace As String, _
   targetlocation As String) As Import
   Dim myImport As New Import()
   myImport.Location = targetlocation
   myImport.Namespace = targetNamespace
   Return myImport
End Function 'CreateImport

.NET Framework
Available since 1.1
Return to top
Show: