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
Type
The type of content. Can be ref/resource or ref/prompt.
[JsonPropertyName("type")]
public string Type { get; set; }
Property Value
Uri
The URI or URI template of the resource.
[JsonPropertyName("uri")]
public string? Uri { get; set; }
Property Value
Methods
ToString()
Returns a string representation of the reference.
public override string ToString()
Returns
Validate(out string?)
Validates the reference object.
public bool Validate(out string? validationMessage)
Parameters
validationMessage
string