Gets the recent blog posts.

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

Syntax

C#
protected virtual void GetRecentBlogPosts(
	List<Post> posts,
	string blogid,
	int numberOfPosts,
	string username
)
Visual Basic
Protected Overridable Sub GetRecentBlogPosts ( 
	posts As List(Of Post),
	blogid As String,
	numberOfPosts As Integer,
	username As String
)
Visual C++
protected:
virtual void GetRecentBlogPosts(
	List<Post>^ posts, 
	String^ blogid, 
	int numberOfPosts, 
	String^ username
)
F#
abstract GetRecentBlogPosts : 
        posts : List<Post> * 
        blogid : string * 
        numberOfPosts : int * 
        username : string -> unit 
override GetRecentBlogPosts : 
        posts : List<Post> * 
        blogid : string * 
        numberOfPosts : int * 
        username : string -> unit 

Parameters

posts
Type: System.Collections.Generic..::..List<(Of <(<'Post>)>)>
List of blog posts
blogid
Type: System..::..String
Blog id
numberOfPosts
Type: System..::..Int32
Maximum number of posts
username
Type: System..::..String
Username

See Also