Esempio n. 1
0
        public void RefreshStores ()
        {
            this.Children.Clear ();
            UIErrorHelper.CheckedExec (delegate() {
                var stores = ServerNode.ServerDTO.VecsClient.GetStores ();

                foreach (var store in stores) {
                    var activeNode = new VecsStoreNode (ServerNode, store, this);
                    this.Children.Add (activeNode);
                }
            });
        }
Esempio n. 2
0
        public void RefreshStores()
        {
            this.Children.Clear();
            UIErrorHelper.CheckedExec(delegate() {
                var stores = ServerNode.ServerDTO.VecsClient.GetStores();

                foreach (var store in stores)
                {
                    var activeNode = new VecsStoreNode(ServerNode, store, this);
                    this.Children.Add(activeNode);
                }
            });
        }
Esempio n. 3
0
 void CreateStore()
 {
     MMCActionHelper.CheckedExec(delegate()
     {
         var frm = new FormVecsCreateCertStore();
         if (MMCDlgHelper.ShowForm(frm))
         {
             var dto = frm.CertStoreDTO;
             ServerDTO.VecsClient.CreateStore(dto.StoreName, dto.Password);
             var node = new VecsStoreNode(ServerDTO, dto.StoreName);
             this.Children.Add(node);
         }
     });
 }
Esempio n. 4
0
        void RefreshStores()
        {
            this.Children.Clear();
            MMCActionHelper.CheckedExec(delegate()
            {
                var client = new Vecs.VecsClient(ServerDTO.Server, ServerDTO.UserName, ServerDTO.Password);
                var stores = client.GetStores();

                foreach (var store in stores)
                {
                    var activeNode = new VecsStoreNode(ServerDTO, store);
                    this.Children.Add(activeNode);
                }
            });
        }