XmlSchemaSet.Contains 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示 XML 架构定义语言 (XSD) 架构是否位于 XmlSchemaSet。
重载
Contains(String) |
指示具有指定目标命名空间 URI 的 XML 架构定义语言 (XSD) 架构是否位于 XmlSchemaSet。 |
Contains(XmlSchema) |
指示指定的 XML 架构定义语言 (XSD) XmlSchema 对象是否位于 XmlSchemaSet。 |
Contains(String)
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
指示具有指定目标命名空间 URI 的 XML 架构定义语言 (XSD) 架构是否位于 XmlSchemaSet。
public:
bool Contains(System::String ^ targetNamespace);
public bool Contains (string? targetNamespace);
public bool Contains (string targetNamespace);
member this.Contains : string -> bool
Public Function Contains (targetNamespace As String) As Boolean
参数
- targetNamespace
- String
架构 targetNamespace
属性。
返回
如果具有指定目标命名空间 URI 的架构位于 XmlSchemaSet,则为 true
;否则为 false
。
注解
间接添加到 的 XmlSchemaSet 架构由 Contains 方法检测;例如,导入的架构。 因此,如果将命名空间的 http://www.contoso.com/retail
架构(用于导入命名空间的架构 http://www.contoso.com/books
)添加到 XmlSchemaSet中,以 作为参数调用 Containshttp://www.contoso.com/books
,则返回 true
。
适用于
Contains(XmlSchema)
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
指示指定的 XML 架构定义语言 (XSD) XmlSchema 对象是否位于 XmlSchemaSet。
public:
bool Contains(System::Xml::Schema::XmlSchema ^ schema);
public bool Contains (System.Xml.Schema.XmlSchema schema);
member this.Contains : System.Xml.Schema.XmlSchema -> bool
Public Function Contains (schema As XmlSchema) As Boolean
参数
返回
如果 XmlSchema 对象在 XmlSchemaSet 中,则为 true
;否则为 false
。
例外
作为参数传递的 XmlSchemaSet 为 null
。