Class GroupMemberRegularListMessage
A message for requesting list of regular group members.
Inheritance
System.Object
GroupMemberRegularListMessage
Implements
Namespace: TehGM.Wolfringo.Messages
Assembly: Wolfringo.Core.dll
Syntax
[ResponseType(typeof(GroupMembersListResponse))]
public class GroupMemberRegularListMessage : IWolfMessage
Remarks
Uses GroupMembersListResponse as response type.
Constructors
| Improve this Doc View SourceGroupMemberRegularListMessage()
Creates a message instance.
Declaration
[JsonConstructor]
protected GroupMemberRegularListMessage()
GroupMemberRegularListMessage(UInt32, UInt32, UInt32, Boolean)
Creates a message instance.
Declaration
public GroupMemberRegularListMessage(uint groupID, uint afterUserID, uint limit = 100U, bool subscribe = true)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | groupID | ID of the group to get members of. |
System.UInt32 | afterUserID | Users with ID smaller or equal to this value will be skipped (for pagination purposes). |
System.UInt32 | limit | How many members to retrieve (for pagination purposes). |
System.Boolean | subscribe | Subscribe to group members' profile updates? |
Properties
| Improve this Doc View SourceAfterUserID
Users with ID smaller or equal to this value will be skipped (for pagination purposes).
Declaration
[JsonProperty("after")]
public uint AfterUserID { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
See Also
| Improve this Doc View SourceEventName
Message event name.
Declaration
[JsonIgnore]
public string EventName { get; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
Equals to GroupMemberPrivilegedList.
GroupID
ID of the group.
Declaration
[JsonProperty("id")]
public uint GroupID { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
Limit
How many members to retrieve (for pagination purposes).
Declaration
[JsonProperty("limit")]
public uint Limit { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
See Also
| Improve this Doc View SourceSubscribeToUpdates
Subscribe to group members' profile updates?
Declaration
[JsonProperty("subscribe")]
public bool SubscribeToUpdates { get; }
Property Value
Type | Description |
---|---|
System.Boolean |