Class DoneLoadingEventArgs
event args for the BeforePreparingStatement Event of dbcursor
Inheritance
System.Object
System.EventArgs
DoneLoadingEventArgs
Inherited Members
System.EventArgs.Empty
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: Simplic.Framework.DAL
Assembly: Simplic.Framework.DAL.dll
Syntax
public class DoneLoadingEventArgs : EventArgs
Constructors
| Improve this Doc View SourceDoneLoadingEventArgs(IList<DataRow>, DoneLoadingState)
event args for the async DoneLoading Event
Declaration
public DoneLoadingEventArgs(IList<DataRow> loadedRows, DoneLoadingState result)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IList<System.Data.DataRow> | loadedRows | |
DoneLoadingState | result |
Properties
| Improve this Doc View SourceDataTable
Gets or sets the daa table
Declaration
public DataTable DataTable { get; set; }
Property Value
Type | Description |
---|---|
System.Data.DataTable |
LoadedRows
Declaration
public IList<DataRow> LoadedRows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Data.DataRow> |
Result
Represents the result of the loading event
Declaration
public DoneLoadingState Result { get; }
Property Value
Type | Description |
---|---|
DoneLoadingState |