Skip to content

Commit 1cd4c1b

Browse files
committed
Added missing XML documentation
1 parent 7bc929f commit 1cd4c1b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Source/Platibus/Security/BasicAuthCredentials.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,27 @@ public override int GetHashCode()
9191
}
9292
}
9393

94+
/// <summary>
95+
/// Determines equality of two <see cref="BasicAuthCredentials"/> objects based on
96+
/// their respective values rather than reference
97+
/// </summary>
98+
/// <param name="left">The left operand</param>
99+
/// <param name="right">The right operand</param>
100+
/// <returns>Returns <c>true</c> if the left and right operands contain the same
101+
/// values, <c>false</c> otherwise</returns>
94102
public static bool operator ==(BasicAuthCredentials left, BasicAuthCredentials right)
95103
{
96104
return Equals(left, right);
97105
}
98106

107+
/// <summary>
108+
/// Determines inequality of two <see cref="BasicAuthCredentials"/> objects based on
109+
/// their respective values rather than reference
110+
/// </summary>
111+
/// <param name="left">The left operand</param>
112+
/// <param name="right">The right operand</param>
113+
/// <returns>Returns <c>true</c> if the left and right operands contain different
114+
/// values, <c>false</c> otherwise</returns>
99115
public static bool operator !=(BasicAuthCredentials left, BasicAuthCredentials right)
100116
{
101117
return !Equals(left, right);

0 commit comments

Comments
 (0)