Skip to content

Commit 7bf2a71

Browse files
committed
Fix Sandcastle warnings.
1 parent 9143768 commit 7bf2a71

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

src/MongoDB.Driver.Core/Core/ConnectionPools/IConnectionPool.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ public interface IConnectionPool : IDisposable
7171
/// <summary>
7272
/// Clears the connection pool.
7373
/// </summary>
74+
/// <param name="serviceId">The service id.</param>
7475
void Clear(ObjectId serviceId);
7576

7677
/// <summary>

src/MongoDB.Driver.Core/ServerApi.cs

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,23 @@ public ServerApi(ServerApiVersion version, Optional<bool?> strict = default, Opt
4545
}
4646

4747
// operators
48-
/// <inheritdoc/>
48+
/// <summary>
49+
/// Returns true if the two values are not equal.
50+
/// </summary>
51+
/// <param name="lhs">The left hand side.</param>
52+
/// <param name="rhs">The right hand side</param>
53+
/// <returns>True if the two values are not equal.</returns>
4954
public static bool operator !=(ServerApi lhs, ServerApi rhs)
5055
{
5156
return !(lhs == rhs);
5257
}
5358

54-
/// <inheritdoc/>
59+
/// <summary>
60+
/// Returns true if the two values are equal.
61+
/// </summary>
62+
/// <param name="lhs">The left hand side.</param>
63+
/// <param name="rhs">The right hand side</param>
64+
/// <returns>True if the two values are equal.</returns>
5565
public static bool operator ==(ServerApi lhs, ServerApi rhs)
5666
{
5767
return object.Equals(lhs, rhs);

src/MongoDB.Driver.Core/ServerApiVersion.cs

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,23 @@ internal ServerApiVersion(string versionString)
4545
}
4646

4747
// operators
48-
/// <inheritdoc/>
48+
/// <summary>
49+
/// Returns true if the two values are not equal.
50+
/// </summary>
51+
/// <param name="lhs">The left hand side.</param>
52+
/// <param name="rhs">The right hand side</param>
53+
/// <returns>True if the two values are not equal.</returns>
4954
public static bool operator !=(ServerApiVersion lhs, ServerApiVersion rhs)
5055
{
5156
return !(lhs == rhs);
5257
}
5358

54-
/// <inheritdoc/>
59+
/// <summary>
60+
/// Returns true if the two values are equal.
61+
/// </summary>
62+
/// <param name="lhs">The left hand side.</param>
63+
/// <param name="rhs">The right hand side</param>
64+
/// <returns>True if the two values are equal.</returns>
5565
public static bool operator ==(ServerApiVersion lhs, ServerApiVersion rhs)
5666
{
5767
return object.Equals(lhs, rhs);

0 commit comments

Comments
 (0)