| AccountInfoIsInGroup Method |
This is preliminary documentation and is subject to change.
Determines whether the user is in certain group.
Namespace: WikiClientLibrary.SitesAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public bool IsInGroup(
string groupName
)
Public Function IsInGroup (
groupName As String
) As Boolean
Dim instance As AccountInfo
Dim groupName As String
Dim returnValue As Boolean
returnValue = instance.IsInGroup(groupName)
public:
bool IsInGroup(
String^ groupName
)
member IsInGroup :
groupName : string -> bool
Parameters
- groupName String
- The group user should be in.
Return Value
BooleanRemarks It's recommended to use this method instead of checking
Groups manually.
See Also