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

Afficher le fichier Open project: Warewolf-ESB/Warewolf Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Creates a new record with a label.
public NewRecord ( ) : RecordsetRecord
Résultat RecordsetRecord

Recordset() public méthode

public Recordset ( ) : System.Collections.Generic
Résultat System.Collections.Generic

SetValue() public méthode

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.
Résultat void

SetValue() public méthode

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.
Résultat void

ToString() public méthode

public ToString ( ) : string
Résultat string