C# Класс Dev2.Runtime.ServiceModel.Data.Recordset

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Описание методов

NewRecord() публичный Метод

Creates a new record with a label.
public NewRecord ( ) : RecordsetRecord
Результат RecordsetRecord

Recordset() публичный Метод

public Recordset ( ) : System.Collections.Generic
Результат System.Collections.Generic

SetValue() публичный Метод

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.
Результат void

SetValue() публичный Метод

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.
Результат void

ToString() публичный Метод

public ToString ( ) : string
Результат string