Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tmenier committed Jul 12, 2017
1 parent ea59491 commit 15d903f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Flurl.Http.Shared/Configuration/FlurlMessageHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public class FlurlMessageHandler : DelegatingHandler
/// <summary>
/// Initializes a new instance of the <see cref="FlurlMessageHandler"/> class.
/// </summary>
public FlurlMessageHandler() { }

/// <summary>
/// Initializes a new instance of the <see cref="FlurlMessageHandler"/> class with a specific inner handler.
/// </summary>
/// <param name="innerHandler">The inner handler.</param>
public FlurlMessageHandler(HttpMessageHandler innerHandler) : base(innerHandler) { }

Expand Down

0 comments on commit 15d903f

Please sign in to comment.