XmlSchemaAnyAttribute.Namespace 属性

定义

获取或设置包含可使用的属性的命名空间。

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

属性值

可供使用的属性的命名空间。 默认值为 ##any。 自选。

注解

如果未指定命名空间,则 ##any 为默认值。 如果指定了命名空间,则它必须是下表中显示的值之一。

命名空间值 描述
##any 任何命名空间中的元素都可以存在。
##other 任何命名空间中不是包含 anyAttribute 元素的父元素 targetNamespace 的元素都可以存在。
##local 没有使用命名空间限定的元素可以存在。
##targetNamespace 包含 anyAttribute 元素的父元素的 targetNamespace 元素可以存在。
List of {URIs, ##targetNamespace, ##local} 命名空间列表中可以存在以空格分隔的元素。 该列表可以包含以下内容:命名空间的统一资源标识符(URI)引用、##targetNamespace##local

适用于