Example #1
0
 void IExcelCommand.Read(BinaryReader r)
 {
     Headers = r.ReadByte();
     Group   = ExcelSerDes.DecodeFunc <IExcelContext, IEnumerable <Collection <string> >, IEnumerable <IGrouping <T, Collection <string> > > >(r);
     Cmds    = ExcelSerDes.DecodeFunc <IExcelContext, object, IExcelCommand[]>(r);
     _set    = new List <Collection <string> >();
 }
Example #2
0
 void IExcelCommand.Read(BinaryReader r)
 {
     Func = ExcelSerDes.DecodeFunc<IExcelContext, Collection<string>, object, CommandRtn>(r);
     Cmds = ExcelSerDes.DecodeCommands(r);
 }
Example #3
0
 void IExcelCommand.Read(BinaryReader r)
 {
     When = (When)r.ReadByte();
     Func = ExcelSerDes.DecodeFunc <IExcelContext, Collection <string>, CommandRtn>(r);
     Cmds = ExcelSerDes.DecodeCommands(r);
 }
Example #4
0
 void IExcelCommand.Read(BinaryReader r)
 {
     Func        = ExcelSerDes.DecodeFunc <IExcelContext, Collection <string>, object, bool>(r);
     ValueKind   = (CellValueKind)r.ReadInt32();
     ValueFormat = ExcelSerDes.DecodeFunc <IExcelContext, string>(r);
 }