Class Tag
A system-set key-value tag on an API key. Tags are a list (not a map), so the same
Key may appear more than once (e.g. a combination key tagged with multiple
types). Each tag is surfaced as a tag.{Key} claim on the authenticated principal.
public record Tag : IEquatable<Tag>
- Inheritance
-
Tag
- Implements
- Inherited Members
Constructors
Tag(string, string)
A system-set key-value tag on an API key. Tags are a list (not a map), so the same
Key may appear more than once (e.g. a combination key tagged with multiple
types). Each tag is surfaced as a tag.{Key} claim on the authenticated principal.
public Tag(string Key, string Value)
Parameters
Properties
Key
public string Key { get; init; }
Property Value
Value
public string Value { get; init; }