/// <summary> /// check message is operation or not /// </summary> /// <returns></returns> public bool IsOperation() { ITypeInfo msgType = monitor.GetMessageType(messageId); if (msgType == null) { return(false); } return(msgType.IsOperation); }