Skip to content
DocsTry Aspire
DocsTry

AgentEntityInfo Methods

RecordMethods8 members
Describes an AI agent exposed by an agent service backend, used for entity discovery in DevUI.
public record AgentEntityInfo
{
public virtual AgentEntityInfo <Clone>$()
{
// ...
}
}
public record AgentEntityInfo
{
public void Deconstruct(
out string Id,
out string? Description)
{
// ...
}
}
Idstring
Descriptionstring?
Equals(object?)Section titled Equals(object?)overridebool
Determines whether the specified object is equal to the current object.
public record AgentEntityInfo
{
public override bool Equals(
object? obj)
{
// ...
}
}
objobject?The object to compare with the current object.
booltrue if the specified object is equal to the current object; otherwise, false.
Equals(AgentEntityInfo?)Section titled Equals(AgentEntityInfo?)virtualbool
Indicates whether the current object is equal to another object of the same type.
public record AgentEntityInfo
{
public virtual bool Equals(
AgentEntityInfo? other)
{
// ...
}
}
otherAgentEntityInfo?An object to compare with this object.
booltrue if the current object is equal to the other parameter; otherwise, false.
GetHashCodeSection titled GetHashCodeoverrideint
Serves as the default hash function.
public record AgentEntityInfo
{
public override int GetHashCode()
{
// ...
}
}
intA hash code for the current object.
op_Equality(AgentEntityInfo?, AgentEntityInfo?)Section titled op_Equality(AgentEntityInfo?, AgentEntityInfo?)staticbool
public record AgentEntityInfo
{
public static bool operator ==(
AgentEntityInfo? left,
AgentEntityInfo? right)
{
// ...
}
}
op_Inequality(AgentEntityInfo?, AgentEntityInfo?)Section titled op_Inequality(AgentEntityInfo?, AgentEntityInfo?)staticbool
public record AgentEntityInfo
{
public static bool operator !=(
AgentEntityInfo? left,
AgentEntityInfo? right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns a string that represents the current object.
public record AgentEntityInfo
{
public override string ToString()
{
// ...
}
}
stringA string that represents the current object.