C# Class Deveel.Data.Sql.Tables.ColumnInfo

Inheritance: ISerializable
Afficher le fichier Open project: deveel/deveeldb Class Usage Examples

Private Properties

Свойство Type Description
ColumnInfo System

Méthodes publiques

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

Private Methods

Méthode Description
ColumnInfo ( SerializationInfo info, StreamingContext context ) : System

Method Details

ColumnInfo() public méthode

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

Deserialize() public static méthode

public static Deserialize ( BinaryReader reader, ITypeResolver typeResolver ) : ColumnInfo
reader System.IO.BinaryReader
typeResolver ITypeResolver
Résultat ColumnInfo

ISerializable() public méthode

public ISerializable ( SerializationInfo info, StreamingContext context ) : void
info SerializationInfo
context StreamingContext
Résultat void

Serialize() public static méthode

public static Serialize ( ColumnInfo columnInfo, BinaryWriter writer ) : void
columnInfo ColumnInfo
writer System.IO.BinaryWriter
Résultat void