XmlSchemas.Contains Method

Definition

Determines whether the specified item is a member of the collection.

Overloads

Contains(String)

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns a value that indicates whether the collection contains an XmlSchema object that belongs to the specified namespace.

Contains(XmlSchema)

This API supports the product infrastructure and is not intended to be used directly from your code.

Determines whether the XmlSchemas contains a specific schema.

Contains(String)

Returns a value that indicates whether the collection contains an XmlSchema object that belongs to the specified namespace.

This API supports the product infrastructure and is not intended to be used directly from your code.

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

Parameters

targetNamespace
String

The namespace of the item to check for.

Returns

true if the item is found; otherwise, false.

Applies to

Contains(XmlSchema)

Determines whether the XmlSchemas contains a specific schema.

This API supports the product infrastructure and is not intended to be used directly from your code.

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

Parameters

schema
XmlSchema

The XmlSchema object to locate.

Returns

true, if the collection contains the specified item; otherwise, false.

Applies to