Table of Contents

Class ToolInvokedEventArgs

Namespace
Selenium.WebDriver.BiDi.Cdp.WebMCP
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Event fired when a tool invocation starts.

public sealed record ToolInvokedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<ToolInvokedEventArgs>
Inheritance
EventArgs
ToolInvokedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

ToolInvokedEventArgs(string, FrameId, string, string)

Event fired when a tool invocation starts.

public ToolInvokedEventArgs(string ToolName, FrameId FrameId, string InvocationId, string Input)

Parameters

ToolName string

Name of the tool to invoke.

FrameId FrameId

Frame id

InvocationId string

Invocation identifier.

Input string

The input parameters used for the invocation.

Properties

FrameId

Frame id

public FrameId FrameId { get; init; }

Property Value

FrameId

Input

The input parameters used for the invocation.

public string Input { get; init; }

Property Value

string

InvocationId

Invocation identifier.

public string InvocationId { get; init; }

Property Value

string

ToolName

Name of the tool to invoke.

public string ToolName { get; init; }

Property Value

string