Skip to main content

Definition

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

Syntax

CloudNimble.ClaudeEssentials.Hooks.Tools.Responses.WebSearchResultItem

Summary

Represents an individual web search result with a title and URL.

Remarks

Each search result item provides the essential information needed to understand what the result is about (WebSearchResultItem.Title) and where to find more information (WebSearchResultItem.Url). The URL can be used with the WebFetchToolInput to retrieve the full content of the page for more detailed information.

Constructors

.ctor

Syntax

public WebSearchResultItem()

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

Title

Gets or sets the title of the search result.

Syntax

public string Title { get; set; }

Property Value

Type: string

Examples

"Claude Code Documentation - Anthropic"

Remarks

This is typically the page title or heading from the search result. It provides a brief description of what the linked page contains.

Url

Gets or sets the URL of the search result.

Syntax

public string Url { get; set; }

Property Value

Type: string

Examples

"https://docs.anthropic.com/claude-code/overview"

Remarks

This is the direct link to the search result page. The URL can be used with WebFetchToolInput to retrieve and process the page content.

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?