3 January 2015
membership
notification.membership (Notifications) | |
---|---|
Type | Corrade progressive notification |
Notification | membership |
Data | type , firstname , lastname , agent , group , action |
Structure | GroupMembershipEventArgs |
Description | Group membership events (agents joining and leaving groups). |
Commands | None. |
Last Changes | Release 7.36 - added membership notification. |
Data | Description |
---|---|
type | The type of the notification. |
firstname | The first name of the avatar. |
lastname | The last name of the avatar. |
agent | The UUID of the avatar. |
group | The group name that the avatar left or joined. |
action | Either joined or parted depending on whether the avatar joined or left the group. |
private class GroupMembershipEventArgs : EventArgs { public Action Action; public string AgentName; public UUID AgentUUID; public string GroupName; public UUID GroupUUID; }