aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-10-28 16:11:14 -0600
committerCody Robibero <cody@robibe.ro>2021-10-28 16:13:37 -0600
commit0e584f68409e71204f6b9387cde8efe2adb0fbed (patch)
tree3864bc9f2e71cb79fbe8f101db20a691cdf390ea /MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
parent91204fc9f0e704a61300a7bd54f52d56f02f44b3 (diff)
Update documentation; use information from authorization; return generated filename
Diffstat (limited to 'MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs')
-rw-r--r--MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs b/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
index ee8e5806b..6fc54faf2 100644
--- a/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
+++ b/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
@@ -21,7 +21,7 @@ namespace MediaBrowser.Controller.ClientEvent
/// </summary>
/// <param name="authorizationInfo">The current authorization info.</param>
/// <param name="fileContents">The file contents to write.</param>
- /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
- Task WriteDocumentAsync(AuthorizationInfo authorizationInfo, Stream fileContents);
+ /// <returns>The created file name.</returns>
+ Task<string> WriteDocumentAsync(AuthorizationInfo authorizationInfo, Stream fileContents);
}
}