C# 클래스 Dev2.Runtime.ServiceModel.Data.Recordset

파일 보기 프로젝트 열기: Warewolf-ESB/Warewolf 1 사용 예제들

공개 메소드들

메소드 설명
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