Exemplo n.º 1
0
        public void EditCollection(string widgetId, EditCollectionType type, params string[] path)
        {
            var r = XenMessage.Create <EditCollectionRequest>();

            r.WidgetId = widgetId;
            r.Type     = type;
            r.Path     = path;

            _socket.Send(r);
        }
 public EditCollectionResponseReceived(EditCollectionType type, bool successful, string message)
 {
     Type       = type;
     Successful = successful;
     Message    = message;
 }