Class DataProgressEventArgs
Used to provide progress on how many cases have been read.
Inheritance
System.Object
System.EventArgs
DataProgressEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: BayesServer.Data
Assembly: BayesServer.Data.dll
Syntax
public sealed class DataProgressEventArgs : EventArgs
Properties
UnweightedCaseCount
Gets the number of cases read so far. The count does not include any weights that may be applied to cases.
Declaration
public long UnweightedCaseCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int64 |
UnweightedTemporalCount
Gets the number of temporal rows read so far for all cases.
Declaration
public long? UnweightedTemporalCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int64> |
WeightedCaseCount
Gets the number of cases read so far. The count includes any weights that may be applied to cases.
Declaration
public double WeightedCaseCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Double |