You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ObjectPool/src/IPooledObjectPolicy.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ public interface IPooledObjectPolicy<T>
19
19
/// Runs some processing when an object was returned to the pool. Can be used to reset the state of an object and indicate if the object should be returned to the pool.
20
20
/// </summary>
21
21
/// <param name="obj">The object to return to the pool.</param>
22
-
/// <returns><c>true</c> if the object should be returned to the pool. <c>false</c> if it's not possible/desirable for the pool to keep the object.</returns>
22
+
/// <returns><see langword="true" /> if the object should be returned to the pool. <see langword="false" /> if it's not possible/desirable for the pool to keep the object.</returns>
0 commit comments