mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 14:19:29 +00:00
17 lines
390 B
C#
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;
|
|
}
|
|
}
|
|
}
|