August 2003
Intermediate to advanced
928 pages
32h 1m
English
IFormatterConverter
This interface defines the basic
methods that
convert serializable data into base class types. These conversion
methods are used to parse the data contained in
SerializationInfo instances.
public interface IFormatterConverter { // Public Instance Methods public object Convert(objectvalue, Typetype); public object Convert(objectvalue, TypeCodetypeCode); public bool ToBoolean(objectvalue); public byte ToByte(objectvalue); public char ToChar(objectvalue); public DateTime ToDateTime(objectvalue); public decimal ToDecimal(objectvalue); public double ToDouble(objectvalue); public short ToInt16(objectvalue); public int ToInt32(objectvalue); public long ToInt64(objectvalue); public sbyte ToSByte(objectvalue); public float ToSingle(objectvalue); public string ToString(objectvalue); public ushort ToUInt16(objectvalue); public uint ToUInt32(objectvalue); public ulong ToUInt64(objectvalue); }
FormatterConverter
SerializationInfo.SerializationInfo( )