Struct ReadInfo
Provides information about a non temporal record.
Inherited Members
Namespace: BayesServer.Data
Assembly: BayesServer.Data.dll
Syntax
public struct ReadInfo
Constructors
ReadInfo(Object, IDataRecord)
Initializes a new instance of the ReadInfo struct.
Declaration
public ReadInfo(object caseId, IDataRecord record)
Parameters
Type | Name | Description |
---|---|---|
Object | caseId | The current case id. Can be null. |
IDataRecord | record | The current record. |
ReadInfo(Object, Double, IDataRecord)
Declaration
public ReadInfo(object caseId, double weight, IDataRecord record)
Parameters
Type | Name | Description |
---|---|---|
Object | caseId | The current case id. Can be null. |
Double | weight | The case weight. See Weight for more information. |
IDataRecord | record | The current record. |
Properties
CaseId
The current case id. Can be null.
Declaration
public readonly object CaseId { get; }
Property Value
Type | Description |
---|---|
Object |
Record
The current record.
Declaration
public readonly IDataRecord Record { get; }
Property Value
Type | Description |
---|---|
IDataRecord |
Weight
The case weight. See Weight for more information.
Declaration
public readonly double Weight { get; }
Property Value
Type | Description |
---|---|
Double |