diff --git a/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs b/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs
index af3f4e9f3..770483391 100644
--- a/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs
+++ b/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs
@@ -370,6 +370,15 @@ namespace Discord.WebSocket
//Invites
/// Fired when an invite is created.
+ ///
+ ///
+ /// This event is fired when an invite is created. The event handler must return a
+ /// and accept a as its parameters.
+ ///
+ ///
+ /// The invite created will be passed into the parameter.
+ ///
+ ///
public event Func InviteCreated
{
add { _inviteCreatedEvent.Add(value); }
@@ -377,7 +386,19 @@ namespace Discord.WebSocket
}
internal readonly AsyncEvent> _inviteCreatedEvent = new AsyncEvent>();
/// Fired when an invite is deleted.
- /// The string is the invite code.
+ ///
+ ///
+ /// This event is fired when an invite is deleted. The event handler must return
+ /// a and accept a and
+ /// as its parameters.
+ ///
+ ///
+ /// The channel where this invite was will be passed into the parameter.
+ ///
+ ///
+ /// The code of the deleted invite will be passed into the parameter.
+ ///
+ ///
public event Func InviteDeleted
{
add { _inviteDeletedEvent.Add(value); }