Import.Namespace 属性

定义

获取或设置 namespace 元素的 XML import 特性的值。

public:
 property System::String ^ Namespace { System::String ^ get(); void set(System::String ^ value); };
public string Namespace { get; set; }
member this.Namespace : string with get, set
Public Property Namespace As String

属性值

namespace 元素的 XML import 特性的值。

示例

// Creates an Import object with namespace and location.
Import^ CreateImport( String^ targetNamespace, String^ targetlocation )
{
   Import^ myImport = gcnew Import;
   myImport->Location = targetlocation;
   myImport->Namespace = targetNamespace;
   return myImport;
}
// Creates an Import object with namespace and location.
public static Import CreateImport(string targetNamespace,
   string targetlocation)
{
   Import myImport = new Import();
   myImport.Location = targetlocation;
   myImport.Namespace = targetNamespace;
   return myImport;
}
' 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

适用于