Replace redundant xml comments with inheritdoc. Make async changes to CloseSocket.

This commit is contained in:
luke92brown
2022-05-09 22:00:30 -05:00
committed by luke brown
parent 4b563f4d7e
commit 99df9c8fcd
6 changed files with 15 additions and 19 deletions

View File

@@ -62,7 +62,8 @@ namespace MediaBrowser.Controller.Net
/// <summary>
/// Gracefully closes the socket.
/// </summary>
/// <returns>Task.</returns>
/// <param name="cancellationToken">The cancellation token.</param>
void CloseSocket(CancellationToken cancellationToken);
Task CloseSocket(CancellationToken cancellationToken);
}
}