[This is preliminary documentation and is subject to change.]
This method returns a set of all the members of the
OfficeClip account who are not a member of a given group.
Namespace:
OfficeClip.DBLayer.AccountAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
C# |
---|
public List<UserInfo> GetNonGroupMemberList( int groupId ) |
Visual Basic (Declaration) |
---|
Public Function GetNonGroupMemberList ( _ groupId As Integer _ ) As List(Of UserInfo) |
Visual C++ |
---|
public: List<UserInfo^>^ GetNonGroupMemberList( int groupId ) |
Parameters
- groupId
- Type: System..::.Int32
The id of the group whose non-members have to be obtained.
Return Value
Returns a DataSet of all the registered non group members for a group. This DataSet Consists of a single DataTable with the following columns.- firstName (System.String)First Name of the user.
- lastName (System.String)Last Name of the user.
- emailAddress (System.String)Email Address of the user.
- UserId (System.Int32)Id of the user.