Share via


WebSearchActionFind Constructors

Definition

Overloads

Name Description
WebSearchActionFind()

Initializes a new instance of WebSearchActionFind for deserialization.

WebSearchActionFind(Uri, String)

Initializes a new instance of WebSearchActionFind.

WebSearchActionFind(WebSearchActionType, IDictionary<String,BinaryData>, Uri, String)

Initializes a new instance of WebSearchActionFind.

WebSearchActionFind()

Source:
WebSearchActionFind.cs

Initializes a new instance of WebSearchActionFind for deserialization.

public WebSearchActionFind();
Public Sub New ()

Applies to

WebSearchActionFind(Uri, String)

Source:
WebSearchActionFind.cs

Initializes a new instance of WebSearchActionFind.

public WebSearchActionFind(Uri url, string pattern);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.WebSearchActionFind : Uri * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.WebSearchActionFind
Public Sub New (url As Uri, pattern As String)

Parameters

url
Uri

The URL of the page searched for the pattern.

pattern
String

The pattern or text to search for within the page.

Exceptions

url or pattern is null.

Applies to

WebSearchActionFind(WebSearchActionType, IDictionary<String,BinaryData>, Uri, String)

Source:
WebSearchActionFind.cs

Initializes a new instance of WebSearchActionFind.

public WebSearchActionFind(Azure.AI.AgentServer.Contracts.Generated.OpenAI.WebSearchActionType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, Uri url, string pattern);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.WebSearchActionFind : Azure.AI.AgentServer.Contracts.Generated.OpenAI.WebSearchActionType * System.Collections.Generic.IDictionary<string, BinaryData> * Uri * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.WebSearchActionFind
Public Sub New (type As WebSearchActionType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), url As Uri, pattern As String)

Parameters

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

url
Uri

The URL of the page searched for the pattern.

pattern
String

The pattern or text to search for within the page.

Applies to