Class BaseParametersEventArgs
public abstract record BaseParametersEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<BaseParametersEventArgs>
- Inheritance
-
BaseParametersEventArgs
- Implements
- Derived
- Inherited Members
Constructors
BaseParametersEventArgs(BrowsingContext?, bool, Navigation?, long, RequestData, DateTimeOffset, IReadOnlyList<Intercept>?)
protected BaseParametersEventArgs(BrowsingContext? Context, bool IsBlocked, Navigation? Navigation, long RedirectCount, RequestData Request, DateTimeOffset Timestamp, IReadOnlyList<Intercept>? Intercepts)
Parameters
ContextBrowsingContextIsBlockedboolNavigationNavigationRedirectCountlongRequestRequestDataTimestampDateTimeOffsetInterceptsIReadOnlyList<Intercept>
Properties
Context
public BrowsingContext? Context { get; init; }
Property Value
Intercepts
public IReadOnlyList<Intercept>? Intercepts { get; init; }
Property Value
IsBlocked
public bool IsBlocked { get; init; }
Property Value
Navigation
public Navigation? Navigation { get; init; }
Property Value
RedirectCount
public long RedirectCount { get; init; }
Property Value
Request
public RequestData Request { get; init; }
Property Value
Timestamp
public DateTimeOffset Timestamp { get; init; }