Class DataSet
Represents a collection of data, typically organized in a tabular format, which can be used for logging data execution results.
Inheritance
System.Object
DataSet
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: BoldReports.Processing
Assembly: BoldReports.Web.dll
Syntax
public class DataSet
Constructors
DataSet()
Declaration
public DataSet()
Properties
Name
Gets or sets the name associated with the execution logger.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the name of the execution logger. |
RowsRead
Gets or sets the number of rows that have been read.
Declaration
public double RowsRead { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the total number of rows read. |
TotalTimeDataRetrieval
Gets or sets the total time spent on data retrieval operations.
Declaration
public double TotalTimeDataRetrieval { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The total time, in seconds, dedicated to retrieving data. |
Methods
Dispose()
Provides a mechanism for releasing unmanaged resources.
Declaration
public void Dispose()
Remarks
It close or release unmanaged resources such as files, streams, and handles held by an instance of the class that implements this interface.