Update blog item.

Namespace: MonoSoftware.MonoX.MetaWeblog
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected virtual bool UpdateBlogItem(
	string postid,
	string username,
	Post post,
	bool publish
)
Visual Basic
Protected Overridable Function UpdateBlogItem ( 
	postid As String,
	username As String,
	post As Post,
	publish As Boolean
) As Boolean
Visual C++
protected:
virtual bool UpdateBlogItem(
	String^ postid, 
	String^ username, 
	Post post, 
	bool publish
)
F#
abstract UpdateBlogItem : 
        postid : string * 
        username : string * 
        post : Post * 
        publish : bool -> bool 
override UpdateBlogItem : 
        postid : string * 
        username : string * 
        post : Post * 
        publish : bool -> bool 

Parameters

postid
Type: System..::..String
Post id
username
Type: System..::..String
Username
post
Type: MonoSoftware.MonoX.MetaWeblog..::..Post
Post
publish
Type: System..::..Boolean
Publish the post

Return Value

Type: Boolean
True if blog post is updated, false otherwise

See Also