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
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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
- class XmlDataLoadOptions
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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
- class XmlDataLoadOptions
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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
- class XmlDataLoadOptions
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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
- class XmlDataLoadOptions
- class XmlDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly