Updated IApiClient with default CancellationToken

pull/702/head
ScottIsAFool 9 years ago
parent fc115a0c2b
commit b1377f9b00

@ -1318,7 +1318,7 @@ namespace MediaBrowser.Model.ApiClient
/// <param name="cancellationToken">The cancellation token.</param> /// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns> /// <returns>Task.</returns>
Task SendContextMessageAsync(string itemType, string itemId, string itemName, string context, Task SendContextMessageAsync(string itemType, string itemId, string itemName, string context,
CancellationToken cancellationToken); CancellationToken cancellationToken = default(CancellationToken));
/// <summary> /// <summary>
/// Gets the content upload history. /// Gets the content upload history.
@ -1336,7 +1336,7 @@ namespace MediaBrowser.Model.ApiClient
/// <returns>Task.</returns> /// <returns>Task.</returns>
Task UploadFile(Stream stream, Task UploadFile(Stream stream,
LocalFileInfo file, LocalFileInfo file,
CancellationToken cancellationToken); CancellationToken cancellationToken = default(CancellationToken));
/// <summary> /// <summary>
/// Gets the devices options options. /// Gets the devices options options.
@ -1392,7 +1392,7 @@ namespace MediaBrowser.Model.ApiClient
/// <param name="id">The identifier.</param> /// <param name="id">The identifier.</param>
/// <param name="cancellationToken">The cancellation token.</param> /// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task&lt;Stream&gt;.</returns> /// <returns>Task&lt;Stream&gt;.</returns>
Task<Stream> GetSyncJobItemFile(string id, CancellationToken cancellationToken); Task<Stream> GetSyncJobItemFile(string id, CancellationToken cancellationToken = default(CancellationToken));
/// <summary> /// <summary>
/// Gets the synchronize job item additional file. /// Gets the synchronize job item additional file.

Loading…
Cancel
Save