Esempio n. 1
0
        public string newPost(
        string blogid,
        string username,
        string password,
        Post content,
        bool publish)
        {
            Uri bypass = new Uri("http://www.avigero.com");
            IWebProxy myProxy = new WebProxy();
            this.Proxy = myProxy;
            bool dobp = this.Proxy.IsBypassed(bypass);

            return (string)this.Invoke("newPost", new object[] { blogid, username, password, content, publish });
        }
Esempio n. 2
0
 public bool editPost(
 string postid,
 string username,
 string password,
 Post content,
 bool publish)
 {
     return (bool)this.Invoke("editPost", new object[] { postid, username, password, content, publish });
 }