C# 클래스 Deveel.Data.Sql.Tables.ColumnInfo

상속: ISerializable
파일 보기 프로젝트 열기: deveel/deveeldb 1 사용 예제들

Private Properties

프로퍼티 타입 설명
ColumnInfo System

공개 메소드들

메소드 설명
ColumnInfo ( string columnName, SqlType columnType ) : System

Constructs a new column with the given name and type.

Deserialize ( BinaryReader reader, ITypeResolver typeResolver ) : ColumnInfo
ISerializable ( SerializationInfo info, StreamingContext context ) : void
Serialize ( ColumnInfo columnInfo, BinaryWriter writer ) : void

비공개 메소드들

메소드 설명
ColumnInfo ( SerializationInfo info, StreamingContext context ) : System

메소드 상세

ColumnInfo() 공개 메소드

Constructs a new column with the given name and type.
/// If either one of or /// is null. ///
public ColumnInfo ( string columnName, SqlType columnType ) : System
columnName string The name of the column, as case-sensitive and unique /// within the table.
columnType SqlType The that this column will handle.
리턴 System

Deserialize() 공개 정적인 메소드

public static Deserialize ( BinaryReader reader, ITypeResolver typeResolver ) : ColumnInfo
reader System.IO.BinaryReader
typeResolver ITypeResolver
리턴 ColumnInfo

ISerializable() 공개 메소드

public ISerializable ( SerializationInfo info, StreamingContext context ) : void
info SerializationInfo
context StreamingContext
리턴 void

Serialize() 공개 정적인 메소드

public static Serialize ( ColumnInfo columnInfo, BinaryWriter writer ) : void
columnInfo ColumnInfo
writer System.IO.BinaryWriter
리턴 void