File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments