XmlSchemas.Contains Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
- Source:
- XmlSchemas.cs
- Source:
- XmlSchemas.cs
- Source:
- XmlSchemas.cs
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)
- Source:
- XmlSchemas.cs
- Source:
- XmlSchemas.cs
- Source:
- XmlSchemas.cs
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
Returns
true
, if the collection contains the specified item; otherwise, false
.