Table of Contents

Class Reference

Namespace
ModelContextProtocol.Protocol.Types
Assembly
ModelContextProtocol.dll

Represents a reference to a resource or prompt. Umbrella type for both ResourceReference and PromptReference from the spec schema. See the schema for details

public class Reference
Inheritance
Reference
Inherited Members

Properties

Name

The name of the prompt or prompt template.

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

Type

The type of content. Can be ref/resource or ref/prompt.

[JsonPropertyName("type")]
public string Type { get; set; }

Property Value

string

Uri

The URI or URI template of the resource.

[JsonPropertyName("uri")]
public string? Uri { get; set; }

Property Value

string

Methods

ToString()

Returns a string representation of the reference.

public override string ToString()

Returns

string

Validate(out string?)

Validates the reference object.

public bool Validate(out string? validationMessage)

Parameters

validationMessage string

Returns

bool