Class ConsoleApiArgument
Represents information about a an argument in call to the browser's console API.
public class ConsoleApiArgument
- Inheritance
-
ConsoleApiArgument
- Inherited Members
Constructors
ConsoleApiArgument(string, string?)
Initializes a new instance of the ConsoleApiArgument type.
public ConsoleApiArgument(string type, string? value)
Parameters
type
stringThe type of the argument in the call to the browser's console API.
value
stringThe value of the argument in the call to the browser's console API.
Exceptions
- ArgumentNullException
If
type
is null.
Properties
Type
Gets the type of the argument in the call to the browser's console API.
public string Type { get; }
Property Value
Value
Gets the value of the argument in the call to the browser's console API.
public string? Value { get; }