WebSearchActionFind Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- type
- WebSearchActionType
- 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.