Struct AgentId
- Inherited Members
Constructors
AgentId(AgentType, string)
Parameters
AgentId(string, string)
Initializes a new instance of the Agent
Parameters
AgentId((string Type, string Key))
Initializes a new instance of the Agent
Parameters
Fields
Key
Agent instance identifier. Strings may only be composed of alphanumeric letters (a-z) and (0-9), or underscores (_).
Field Value
Type
An identifier that associates an agent with a specific factory function. Strings may only be composed of alphanumeric letters (a-z) and (0-9), or underscores (_).
Field Value
Methods
Equals(object?)
Determines whether the specified object is equal to the current Agent
Parameters
obj
objectThe object to compare with the current instance.
Returns
FromStr(string)
Convert a string of the format "type/key" into an Agent
Parameters
maybeAgentId
stringThe agent ID string.
Returns
GetHashCode()
Returns a hash code for this Agent
Returns
- int
A hash code for the current instance.
ToString()
Returns the string representation of the Agent
Returns
- string
A string in the format "type/key".
Operators
operator ==(AgentId, AgentId)
Parameters
Returns
explicit operator AgentId(string)
Explicitly converts a string to an Agent
Parameters
id
stringThe string representation of an agent ID.