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)
Parameter Type Description
xmlPath String The 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)
Parameter Type Description
xmlStream Stream The 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)
Parameter Type Description
xmlPath String The path to the XML file to be used as the data source.
xmlSchemaPath String The 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)
Parameter Type Description
xmlStream Stream The stream of XML data to be used as the data source.
xmlSchemaStream Stream The 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)
Parameter Type Description
xmlPath String The path to the XML file to be used as the data source.
options XmlDataLoadOptions Options 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)
Parameter Type Description
xmlStream Stream The stream of XML data to be used as the data source.
options XmlDataLoadOptions Options 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)
Parameter Type Description
xmlPath String The path to the XML file to be used as the data source.
xmlSchemaPath String The path to the XML Schema Definition file that provides schema for the XML file.
options XmlDataLoadOptions Options 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)
Parameter Type Description
xmlStream Stream The stream of XML data to be used as the data source.
xmlSchemaStream Stream The stream of XML Schema Definition that provides schema for the XML data.
options XmlDataLoadOptions Options for XML data loading.

See Also