docs: add xmldoc to members

This commit is contained in:
Oliver Booth 2023-08-08 12:47:21 +01:00
parent 50a25dad6f
commit 4d10fd4ea1
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
1 changed files with 21 additions and 0 deletions

View File

@ -91,6 +91,14 @@ public sealed class BlogPost : IEquatable<BlogPost>
/// <value>The legacy WordPress ID.</value>
public int? WordPressId { get; set; }
/// <summary>
/// Returns a value indicating whether this instance of <see cref="BlogPost" /> is equal to another instance.
/// </summary>
/// <param name="other">An instance to compare with this instance.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="other" /> is equal to this instance; otherwise,
/// <see langword="false" />.
/// </returns>
public bool Equals(BlogPost? other)
{
if (ReferenceEquals(null, other)) return false;
@ -98,6 +106,14 @@ public sealed class BlogPost : IEquatable<BlogPost>
return Id == other.Id;
}
/// <summary>
/// Returns a value indicating whether this instance is equal to a specified object.
/// </summary>
/// <param name="obj">An object to compare with this instance.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is an instance of <see cref="BlogPost" /> and equals the
/// value of this instance; otherwise, <see langword="false" />.
/// </returns>
public override bool Equals(object? obj)
{
return ReferenceEquals(this, obj) || obj is BlogPost other && Equals(other);
@ -135,6 +151,11 @@ public sealed class BlogPost : IEquatable<BlogPost>
return $"{GetDisqusDomain()}/{path}";
}
/// <summary>
/// Gets the hash code for this instance.
/// </summary>
/// <returns>The hash code.</returns>
public override int GetHashCode()
{
// ReSharper disable once NonReadonlyMemberInGetHashCode