Skip to main content

Definition

Assembly: CloudNimble.ClaudeEssentials.dll Namespace: CloudNimble.ClaudeEssentials.Hooks.Tools.Responses Inheritance: System.Object

Syntax

CloudNimble.ClaudeEssentials.Hooks.Tools.Responses.WebSearchResultContainer

Summary

Represents a container grouping web search results from a single search operation.

Remarks

Search results are organized into containers that can be traced back to specific tool invocations using the WebSearchResultContainer.ToolUseId. Each container holds multiple individual search result items.

Constructors

.ctor

Syntax

public WebSearchResultContainer()

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

Content

Gets or sets the list of individual search result items in this container.

Syntax

public System.Collections.Generic.List<CloudNimble.ClaudeEssentials.Hooks.Tools.Responses.WebSearchResultItem> Content { get; set; }

Property Value

Type: System.Collections.Generic.List<CloudNimble.ClaudeEssentials.Hooks.Tools.Responses.WebSearchResultItem>

Remarks

Each item represents a single search result with a title and URL. Results are ordered by relevance as determined by the search engine.

ToolUseId

Gets or sets the unique identifier for the tool use that produced these results.

Syntax

public string ToolUseId { get; set; }

Property Value

Type: string

Examples

"srvtoolu_01Y7zVgSRg9cAvqgZdue61h3"

Remarks

This ID can be used to correlate search results with specific tool invocations in the conversation history. It follows the format "srvtoolu_" followed by a unique identifier string.

Methods

Equals Inherited Virtual

Inherited from object

Syntax

public virtual bool Equals(object obj)

Parameters

NameTypeDescription
objobject?-

Returns

Type: bool

Equals Inherited

Inherited from object

Syntax

public static bool Equals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

GetHashCode Inherited Virtual

Inherited from object

Syntax

public virtual int GetHashCode()

Returns

Type: int

GetType Inherited

Inherited from object

Syntax

public System.Type GetType()

Returns

Type: System.Type

MemberwiseClone Inherited

Inherited from object

Syntax

protected internal object MemberwiseClone()

Returns

Type: object

ReferenceEquals Inherited

Inherited from object

Syntax

public static bool ReferenceEquals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?