Exemplo n.º 1
0
 internal MsgHeaderData(EMsgDataType msgDataType)
 {
     _MsgDataType = msgDataType;
     _RefNo       = RefNoCount;
     RefNoCount++;
     IsReply = false;
 }
Exemplo n.º 2
0
 internal MsgHeaderData(SerializationInfo info, StreamingContext context)
 {
     _MsgDataType = (EMsgDataType)info.GetValue("MsgDataTye", typeof(EMsgDataType));
     _RefNo       = info.GetInt32("RefNo");
     _IsReply     = info.GetBoolean("IsReply");
 }