Skip to content

Commit

Permalink
Added set for HttpRequestMessageConfiguration.Properties, otherwise a…
Browse files Browse the repository at this point in the history
…ll have to be copied manually.

[release]
  • Loading branch information
Lakritzator committed Sep 9, 2016
1 parent 0e48977 commit ae3554c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public class HttpRequestMessageConfiguration : IHttpRequestConfiguration
/// <summary>
/// A set of properties for the HTTP request.
/// </summary>
public IDictionary<string, object> Properties { get; }= new Dictionary<string, object>();
public IDictionary<string, object> Properties { get; set; }= new Dictionary<string, object>();
}
}

0 comments on commit ae3554c

Please sign in to comment.