Class RequestPattern
Request pattern for interception.
public sealed class RequestPattern
- Inheritance
-
RequestPattern
- Inherited Members
Properties
InterceptionStage
Stage at which to begin intercepting requests. Default is Request.
[JsonPropertyName("interceptionStage")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public InterceptionStage? InterceptionStage { get; set; }
Property Value
ResourceType
If set, only requests for matching resource types will be intercepted.
[JsonPropertyName("resourceType")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public ResourceType? ResourceType { get; set; }
Property Value
UrlPattern
Wildcards ('*' -> zero or more, '?' -> exactly one) are allowed. Escape character is
backslash. Omitting is equivalent to "*".
[JsonPropertyName("urlPattern")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? UrlPattern { get; set; }