Class MemberUpdatedEventArgs
Represents arguments for MemberUpdated event.
Namespace: KSharpPlus.EventArgs.Guild.Member
Assembly: KSharpPlus.dll
Syntax
public class MemberUpdatedEventArgs : KuracordEventArgs
Properties
| Improve this Doc View SourceGuild
Gets the guild in which the update occurred.
Declaration
public KuracordGuild Guild { get; }
Property Value
Type | Description |
---|---|
KuracordGuild |
MemberAfter
Get the member with post-update info
Declaration
public KuracordMember MemberAfter { get; }
Property Value
Type | Description |
---|---|
KuracordMember |
MemberBefore
Get the member with pre-update info
Declaration
public KuracordMember MemberBefore { get; }
Property Value
Type | Description |
---|---|
KuracordMember |
NicknameAfter
Gets the member's new nickname.
Declaration
public string NicknameAfter { get; }
Property Value
Type | Description |
---|---|
String |
NicknameBefore
Gets the member's old nickname.
Declaration
public string NicknameBefore { get; }
Property Value
Type | Description |
---|---|
String |