Enum RequestStage
Stages of the request to handle. Request will intercept before the request is sent. Response will intercept after the response is received (but before response body is received).
[JsonConverter(typeof(JsonEnumMemberConverter<RequestStage>))]
public enum RequestStage
Fields
[EnumMember(Value = "Request")] Request = 0Enumerated member for the Request value.
[EnumMember(Value = "Response")] Response = 1Enumerated member for the Response value.