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"

注解

不执行任何验证来验证命名空间引用是否有效。

适用于

另请参阅