C# Class Dev2.Runtime.ServiceModel.Data.Recordset

Mostra file Open project: Warewolf-ESB/Warewolf Class Usage Examples

Public Methods

Method Description
NewRecord ( ) : RecordsetRecord

Creates a new record with a label.

Recordset ( ) : System.Collections.Generic
SetValue ( RecordsetRecord &record, int fieldIndex, string value ) : void

Sets the value of the field at the given field index in the given row. A new row is added if record is null. A new field is added if fieldIndex is greater than or equal to Fields count.

SetValue ( int recordIndex, int fieldIndex, string value ) : void

Sets the value of the field at the given record/field index. A new row is added if recordIndex is greater than or equal to Records count. A new field is added if fieldIndex is greater than or equal to Fields count.

ToString ( ) : string

Method Details

NewRecord() public method

Creates a new record with a label.
public NewRecord ( ) : RecordsetRecord
return RecordsetRecord

Recordset() public method

public Recordset ( ) : System.Collections.Generic
return System.Collections.Generic

SetValue() public method

Sets the value of the field at the given field index in the given row. A new row is added if record is null. A new field is added if fieldIndex is greater than or equal to Fields count.
public SetValue ( RecordsetRecord &record, int fieldIndex, string value ) : void
record RecordsetRecord The record to be updated; may be null.
fieldIndex int The index of the field to be updated.
value string The value.
return void

SetValue() public method

Sets the value of the field at the given record/field index. A new row is added if recordIndex is greater than or equal to Records count. A new field is added if fieldIndex is greater than or equal to Fields count.
public SetValue ( int recordIndex, int fieldIndex, string value ) : void
recordIndex int The index of the record to be updated.
fieldIndex int The index of the field to be updated.
value string The value.
return void

ToString() public method

public ToString ( ) : string
return string