XmlDataSource

XmlDataSource(string)

Creates a new data source with data from an XML file using default options for XML data loading.

public XmlDataSource(string xmlPath)
ParameterTypeDescription
xmlPathStringThe path to the XML file to be used as the data source.

See Also


XmlDataSource(Stream)

Creates a new data source with data from an XML stream using default options for XML data loading.

public XmlDataSource(Stream xmlStream)
ParameterTypeDescription
xmlStreamStreamThe stream of XML data to be used as the data source.

See Also


XmlDataSource(string, string)

Creates a new data source with data from an XML file using an XML Schema Definition file. Default options are used for XML data loading.

public XmlDataSource(string xmlPath, string xmlSchemaPath)
ParameterTypeDescription
xmlPathStringThe path to the XML file to be used as the data source.
xmlSchemaPathStringThe path to the XML Schema Definition file that provides schema for the XML file.

See Also


XmlDataSource(Stream, Stream)

Creates a new data source with data from an XML stream using an XML Schema Definition stream. Default options are used for XML data loading.

public XmlDataSource(Stream xmlStream, Stream xmlSchemaStream)
ParameterTypeDescription
xmlStreamStreamThe stream of XML data to be used as the data source.
xmlSchemaStreamStreamThe stream of XML Schema Definition that provides schema for the XML data.

See Also


XmlDataSource(string, XmlDataLoadOptions)

Creates a new data source with data from an XML file using the specified options for XML data loading.

public XmlDataSource(string xmlPath, XmlDataLoadOptions options)
ParameterTypeDescription
xmlPathStringThe path to the XML file to be used as the data source.
optionsXmlDataLoadOptionsOptions for XML data loading.

See Also


XmlDataSource(Stream, XmlDataLoadOptions)

Creates a new data source with data from an XML stream using the specified options for XML data loading.

public XmlDataSource(Stream xmlStream, XmlDataLoadOptions options)
ParameterTypeDescription
xmlStreamStreamThe stream of XML data to be used as the data source.
optionsXmlDataLoadOptionsOptions for XML data loading.

See Also


XmlDataSource(string, string, XmlDataLoadOptions)

Creates a new data source with data from an XML file using an XML Schema Definition file. The specified options are used for XML data loading.

public XmlDataSource(string xmlPath, string xmlSchemaPath, XmlDataLoadOptions options)
ParameterTypeDescription
xmlPathStringThe path to the XML file to be used as the data source.
xmlSchemaPathStringThe path to the XML Schema Definition file that provides schema for the XML file.
optionsXmlDataLoadOptionsOptions for XML data loading.

See Also


XmlDataSource(Stream, Stream, XmlDataLoadOptions)

Creates a new data source with data from an XML stream using an XML Schema Definition stream. The specified options are used for XML data loading.

public XmlDataSource(Stream xmlStream, Stream xmlSchemaStream, XmlDataLoadOptions options)
ParameterTypeDescription
xmlStreamStreamThe stream of XML data to be used as the data source.
xmlSchemaStreamStreamThe stream of XML Schema Definition that provides schema for the XML data.
optionsXmlDataLoadOptionsOptions for XML data loading.

See Also