Files
SystemExtensions/SystemExtensions.NetStandard/Http/HttpClientEventMessage.cs
T
2021-05-13 13:55:17 +02:00

17 lines
390 B
C#

namespace System.Http
{
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;
}
}
}