共用方式為


NamespaceInfo.Namespace 屬性

定義

取得或設定命名空間參考。

public:
 property System::String ^ Namespace { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("namespace", DefaultValue="", IsKey=true, IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Namespace { get; set; }
[<System.Configuration.ConfigurationProperty("namespace", DefaultValue="", IsKey=true, IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Namespace : string with get, set
Public Property Namespace As String

屬性值

字串,指定命名空間的名稱。

屬性

範例

下列程式碼範例示範如何使用 Namespace 屬性。 此程式碼範例是針對 類別提供的較大範例的 PagesSection 一部分。

// Set the Namespace property.
namespaceInfo.Namespace = "System.Collections";
' Set the Namespace property.
namespaceInfo.Namespace = "System.Collections"

備註

不會執行驗證,以確認命名空間參考有效。

適用於

另請參閱