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