| @@ -48,8 +48,8 @@ namespace Discord.WebSocket | |||||
| int? IInvite.PresenceCount => throw new NotImplementedException(); | int? IInvite.PresenceCount => throw new NotImplementedException(); | ||||
| /// <inheritdoc /> | /// <inheritdoc /> | ||||
| int? IInvite.MemberCount => throw new NotImplementedException(); | int? IInvite.MemberCount => throw new NotImplementedException(); | ||||
| /// <inheritdoc /> | |||||
| bool IInviteMetadata.IsRevoked => throw new NotImplementedException(); | |||||
| [Obsolete("This will always return false. If an invite is revoked, it will not be found and the invite will be null.")] | |||||
| bool IInviteMetadata.IsRevoked => false; | |||||
| /// <inheritdoc /> | /// <inheritdoc /> | ||||
| public bool IsTemporary { get; private set; } | public bool IsTemporary { get; private set; } | ||||
| /// <inheritdoc /> | /// <inheritdoc /> | ||||
| @@ -138,6 +138,8 @@ namespace Discord.WebSocket | |||||
| /// <inheritdoc /> | /// <inheritdoc /> | ||||
| IChannel IInvite.Channel => Channel; | IChannel IInvite.Channel => Channel; | ||||
| /// <inheritdoc /> | /// <inheritdoc /> | ||||
| IUser IInviteMetadata.Inviter => Inviter; | |||||
| IUser IInvite.Inviter => Inviter; | |||||
| /// <inheritdoc /> | |||||
| IUser IInvite.TargetUser => TargetUser; | |||||
| } | } | ||||
| } | } | ||||