using System.IO; using System.Threading.Tasks; namespace MediaBrowser.Controller.ClientEvent { /// /// The client event logger. /// public interface IClientEventLogger { /// /// Writes a file to the log directory. /// /// The client name writing the document. /// The client version writing the document. /// The file contents to write. /// The created file name. Task WriteDocumentAsync( string clientName, string clientVersion, Stream fileContents); } }