Example #1
0
        public String newPost(String blogid, String username, String password, MetaWeblogEntity.Post content, bool publish)
        {
            content.dateCreated.AddHours(-1);

            return (String)this.Invoke("newPost", new object[] { blogid, username, password, content, publish });
        }
Example #2
0
 public bool editPost(String postid, String username, String password, MetaWeblogEntity.Post content, bool publish)
 {
     return (bool)this.Invoke("editPost", new object[] { postid, username, password, content, publish });
 }
Example #3
0
 public MetaWeblogEntity.MediaFile newMediaObject(String blogid, String username, String password, MetaWeblogEntity.MediaObject data)
 {
     return (MetaWeblogEntity.MediaFile)this.Invoke("newMediaObject", new object[] { blogid, username, password, data });
 }