mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 14:39:28 +00:00
Improve IHttpClient factories (#20)
Codestyle fixes Setup CODEOWNERS Setup dependabot
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
namespace System.Net.Http
|
||||
{
|
||||
public sealed class HttpClientEventMessage
|
||||
{
|
||||
public Type Scope { get; }
|
||||
public string Method { get; }
|
||||
public string Url { get; }
|
||||
namespace System.Net.Http;
|
||||
|
||||
internal HttpClientEventMessage(Type scope, string method, string url)
|
||||
{
|
||||
this.Scope = scope;
|
||||
this.Method = method;
|
||||
this.Url = url;
|
||||
}
|
||||
public sealed class HttpClientEventMessage
|
||||
{
|
||||
public Type Scope { get; }
|
||||
public string Method { get; }
|
||||
public string Url { get; }
|
||||
|
||||
internal HttpClientEventMessage(Type scope, string method, string url)
|
||||
{
|
||||
this.Scope = scope;
|
||||
this.Method = method;
|
||||
this.Url = url;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user