Browse Source

Added types to <returns> tags where missing

pull/1161/head
Chris Johnston 7 years ago
parent
commit
d9e186467e
3 changed files with 7 additions and 4 deletions
  1. +1
    -1
      src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
  2. +1
    -1
      src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs
  3. +5
    -2
      src/Discord.Net.Core/Entities/Users/IConnection.cs

+ 1
- 1
src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs View File

@@ -5,7 +5,7 @@ namespace Discord
public interface IGuildIntegration
{
/// <summary> Gets the integration ID. </summary>
/// <returns> The unique identifier value of this integration. </returns>
/// <returns> An <see cref="ulong"/> representing the unique identifier value of this integration. </returns>
ulong Id { get; }
/// <summary> Gets the integration name. </summary>
/// <returns> A string containing the name of this integration. </returns>


+ 1
- 1
src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs View File

@@ -6,7 +6,7 @@ namespace Discord
public struct IntegrationAccount
{
/// <summary> Gets the ID of the account. </summary>
/// <returns> The unique identifier of this integration account. </returns>
/// <returns> A <see cref="string"> unique identifier of this integration account. </returns>
public string Id { get; }
/// <summary> Gets the name of the account. </summary>
/// <returns> A string containing the name of this integration account. </returns>


+ 5
- 2
src/Discord.Net.Core/Entities/Users/IConnection.cs View File

@@ -5,7 +5,7 @@ namespace Discord
public interface IConnection
{
/// <summary> Gets the ID of the connection account. </summary>
/// <returns> The unique idenitifer of this connection. </returns>
/// <returns> A <see cref="string"/> representing the unique identifier value of this connection. </returns>
string Id { get; }
/// <summary> Gets the service of the connection (twitch, youtube). </summary>
/// <returns> A string containing the name of this type of connection. </returns>
@@ -17,7 +17,10 @@ namespace Discord
/// <returns> A value which if true indicates that this connection has been revoked, otherwise false. </returns>
bool IsRevoked { get; }
/// <summary> Gets a <see cref="IReadOnlyCollection{T}"/> of integration IDs. </summary>
/// <returns> An <see cref="IReadOnlyCollection{T}"/> containing the unique identifier values of integrations. </returns>
/// <returns>
/// An <see cref="IReadOnlyCollection{T}"/> containing <see cref="ulong"/>
/// representations of unique identifier values of integrations.
/// </returns>
IReadOnlyCollection<ulong> IntegrationIds { get; }
}
}

Loading…
Cancel
Save