XmlSchemas.IsDataSet(XmlSchema) Method

Definition

Static method that determines whether the specified XML schema contains a custom IsDataSet attribute set to true, or its equivalent.

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

public:
 static bool IsDataSet(System::Xml::Schema::XmlSchema ^ schema);
public static bool IsDataSet (System.Xml.Schema.XmlSchema schema);
static member IsDataSet : System.Xml.Schema.XmlSchema -> bool
Public Shared Function IsDataSet (schema As XmlSchema) As Boolean

Parameters

schema
XmlSchema

The XML schema to check for an IsDataSet attribute with a true value.

Returns

true if the specified schema exists; otherwise, false.

Remarks

The IsDataSet attribute comes from the namespace urn:schemas-microsoft-com:xml-msdata.

The IsDataSet method is called by the .NET Framework's XML serialization infrastructure and does not need to be called directly.

Applies to