Skip to content

Commit

Permalink
Update IOctopusClientAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
zentron committed Apr 10, 2017
1 parent 9434847 commit 6bd4aa5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Octopus.Client
interface IOctopusAsyncClient
IDisposable
{
event Action<HttpResponseMessage> AfterReceivedHttpResponse
event Action<HttpRequestMessage> BeforeSendingHttpRequest
event Action<OctopusResponse> ReceivedOctopusResponse
event Action<OctopusRequest> SendingOctopusRequest
Expand Down
5 changes: 5 additions & 0 deletions source/Octopus.Client/IOctopusAsyncClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ public interface IOctopusAsyncClient : IDisposable
/// </summary>
event Action<HttpRequestMessage> BeforeSendingHttpRequest;

/// <summary>
/// Occurs when a response has been received.
/// </summary>
event Action<HttpResponseMessage> AfterReceivedHttpResponse;

/// <summary>
/// A simplified interface to commonly-used parts of the API.
/// </summary>
Expand Down

0 comments on commit 6bd4aa5

Please sign in to comment.