Fix warnings in MediaBrowser.Controller/Session

This commit is contained in:
Rich Lander
2021-08-09 19:47:26 -07:00
parent 55389453be
commit 9951a51395
2 changed files with 30 additions and 8 deletions

View File

@@ -26,6 +26,12 @@ namespace MediaBrowser.Controller.Session
/// <summary>
/// Sends the message.
/// </summary>
/// <typeparam name="T">The type of data.</typeparam>
/// <param name="name">Name of message type.</param>
/// <param name="messageId">Message ID.</param>
/// <param name="data">Data to send.</param>
/// <param name="cancellationToken">CancellationToken for operation.</param>
/// <returns>A task.</returns>
Task SendMessage<T>(SessionMessageType name, Guid messageId, T data, CancellationToken cancellationToken);
}
}