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 }); }
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 }); }