Checks if the user with the specified username is in one of the blog admin roles.

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

Syntax

C#
public static bool IsBlogAdmin(
	string userName
)
Visual Basic
Public Shared Function IsBlogAdmin ( 
	userName As String
) As Boolean
Visual C++
public:
static bool IsBlogAdmin(
	String^ userName
)
F#
static member IsBlogAdmin : 
        userName : string -> bool 

Parameters

userName
Type: System..::..String
User name

Return Value

Type: Boolean
True if the user with the specified username is in one of the blog admin roles, false if not.

See Also