Gets the list of blogs that user have permissions to.

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

Syntax

C#
protected virtual void GetUserBlogs(
	string username,
	List<BlogInfo> infoList
)
Visual Basic
Protected Overridable Sub GetUserBlogs ( 
	username As String,
	infoList As List(Of BlogInfo)
)
Visual C++
protected:
virtual void GetUserBlogs(
	String^ username, 
	List<BlogInfo>^ infoList
)
F#
abstract GetUserBlogs : 
        username : string * 
        infoList : List<BlogInfo> -> unit 
override GetUserBlogs : 
        username : string * 
        infoList : List<BlogInfo> -> unit 

Parameters

username
Type: System..::..String
Username
infoList
Type: System.Collections.Generic..::..List<(Of <(<'BlogInfo>)>)>
Blog info list

See Also