Method | Description | |
---|---|---|
Create ( byte array ) : |
Creates a new DataSet from the byte array.
|
|
Create ( string filePath ) : |
Creates a new DataSet from the file provided. The last modified date of the data set is the last write time of the data file provided.
|
|
Create ( string filePath, System.DateTime lastModified ) : |
Creates a new DataSet from the file provided.
|
|
Create ( string filePath, System.DateTime lastModified, bool isTempFile ) : |
Creates a new DataSet from the file provided.
|
|
Create ( string filePath, bool isTempFile ) : |
Creates a new DataSet from the file provided. The last modified date of the data set is the last write time of th data file provided.
|
Method | Description | |
---|---|---|
Load ( |
Initialises the dataset DataSet using the source of the data set.
|
public static Create ( byte array ) : |
||
array | byte | Array of bytes to build the data set from /// |
return |
public static Create ( string filePath ) : |
||
filePath | string | Uncompressed file containing the data for /// the data set |
return |
public static Create ( string filePath, System.DateTime lastModified ) : |
||
filePath | string | Uncompressed file containing the data for /// the data set |
lastModified | System.DateTime | Date and time the source data was /// last modified. |
return |
public static Create ( string filePath, System.DateTime lastModified, bool isTempFile ) : |
||
filePath | string | Uncompressed file containing the data for /// the data set |
lastModified | System.DateTime | Date and time the source data was last /// modified. |
isTempFile | bool | True if the file should be deleted when /// the source is disposed |
return |
public static Create ( string filePath, bool isTempFile ) : |
||
filePath | string | Uncompressed file containing the data for /// the data set |
isTempFile | bool | True if the file should be deleted when /// the source is disposed |
return |