public static PARAM_ROSpecEvent FromXmlNode(XmlNode node) { string val; PARAM_ROSpecEvent param = new PARAM_ROSpecEvent(); val = XmlUtil.GetNodeValue(node, "EventType"); param.EventType = ( ENUM_ROSpecEventType)Enum.Parse(typeof( ENUM_ROSpecEventType), val); val = XmlUtil.GetNodeValue(node, "ROSpecID"); param.ROSpecID = Convert.ToUInt32(val); val = XmlUtil.GetNodeValue(node, "PreemptingROSpecID"); param.PreemptingROSpecID = Convert.ToUInt32(val); return param; }
public new static PARAM_ROSpecEvent FromBitArray(ref BitArray bit_array, ref int cursor, int length) { if (cursor >= length) return null; int field_len = 0; object obj_val; int parameter_len = 0; ArrayList param_list = new ArrayList(); PARAM_ROSpecEvent param = new PARAM_ROSpecEvent(); int param_type = 0; if (bit_array[cursor]) param.tvCoding = true; if (param.tvCoding) { cursor++; param_type = (int)(UInt64)Util.CalculateVal(ref bit_array, ref cursor, 7); if (param_type != param.TypeID) { cursor -= 8; return null; } } else { cursor += 6; param_type = (int)(UInt64)Util.CalculateVal(ref bit_array, ref cursor, 10); if (param_type != param.TypeID) { cursor -= 16; return null; } param.length = (UInt16)(int)Util.DetermineFieldLength(ref bit_array, ref cursor); } if (cursor > length) throw new Exception("Input data is not complete message"); field_len = 8; Util.ConvertBitArrayToObj(ref bit_array, ref cursor, out obj_val, typeof(UInt32), field_len); param.EventType = ( ENUM_ROSpecEventType)(UInt32)obj_val; if (cursor > length) throw new Exception("Input data is not complete message"); field_len = 32; Util.ConvertBitArrayToObj(ref bit_array, ref cursor, out obj_val, typeof(UInt32), field_len); param.ROSpecID = (UInt32)obj_val; if (cursor > length) throw new Exception("Input data is not complete message"); field_len = 32; Util.ConvertBitArrayToObj(ref bit_array, ref cursor, out obj_val, typeof(UInt32), field_len); param.PreemptingROSpecID = (UInt32)obj_val; return param; }