mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 22:39:29 +00:00
e6a06915cd
Codestyle fixes Setup CODEOWNERS Setup dependabot
16 lines
344 B
C#
16 lines
344 B
C#
namespace System.Net.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;
|
|
}
|
|
}
|