Exemple #1
0
        public string Register(string title, string url)
        {
            var requestParams = new[]
            {
                new KeyValuePair <string, object>("title", title),
                new KeyValuePair <string, object>("url", url)
            };

            return(_platformProxy.Get <string>(_servicePath + "/register", requestParams));
        }
 public void Install()
 {
     _platformProxy.Get <string>(_servicePath + "/install");
 }
Exemple #3
0
 public void Register()
 {
     _platformProxy.Get <string>(_servicePath + "/register-user");
 }