Exemplo n.º 1
0
 public Message(string uuid, string name, long priority, WinAPI.cls cls, string obj_uuid, DateTime timestamp, string body)
 {
     this.uuid      = uuid;
     this.name      = name;
     this.priority  = priority;
     this.cls       = cls;
     this.obj_uuid  = obj_uuid;
     this.timestamp = timestamp;
     this.body      = body;
 }
Exemplo n.º 2
0
 public static Dictionary <XenRef <Message>, Message> get(Session session, WinAPI.cls _cls, string _obj_uuid, DateTime _since)
 {
     return(XenRef <Message> .Create <Proxy_Message>(session.proxy.message_get(session.uuid, cls_helper.ToString(_cls), (_obj_uuid != null) ? _obj_uuid : "", _since).parse()));
 }
Exemplo n.º 3
0
 public static XenRef <Message> create(Session session, string _name, long _priority, WinAPI.cls _cls, string _obj_uuid, string _body)
 {
     return(XenRef <Message> .Create(session.proxy.message_create(session.uuid, (_name != null) ? _name : "", _priority.ToString(), cls_helper.ToString(_cls), (_obj_uuid != null) ? _obj_uuid : "", (_body != null) ? _body : "").parse()));
 }