Browse Source

add comment about `null` + fix another xmldoc

pull/2575/head
Misha133 2 years ago
parent
commit
eb5867d689
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/Discord.Net.Rest/Entities/Messages/RestMessage.cs

+ 4
- 1
src/Discord.Net.Rest/Entities/Messages/RestMessage.cs View File

@@ -84,12 +84,15 @@ namespace Discord.Rest
/// <summary>
/// Gets the thread that was started from this message.
/// </summary>
/// <returns>
/// A <see cref="RestThreadChannel"/> object if this message has thread attached; otherwise <see langword="null"/>.
/// </returns>
public RestThreadChannel Thread { get; private set; }

/// <inheritdoc />
public MessageRoleSubscriptionData RoleSubscriptionData { get; private set; }

/// <inheritdoc/>
/// <inheritdoc cref="IMessage.Components"/>
public IReadOnlyCollection<ActionRowComponent> Components { get; private set; }
/// <summary>
/// Gets a collection of the mentioned users in the message.


Loading…
Cancel
Save