Class Locator
Represents a locator element in an XBRL linkbase, which points to a resource in a taxonomy or instance.
public class Locator : XbrlItem
- Inheritance
-
Locator
- Inherited Members
Constructors
Locator(DiscoverableTaxonomySet, XElement)
Initializes a new instance of the Locator class.
public Locator(DiscoverableTaxonomySet dts, XElement xml)
Parameters
dtsDiscoverableTaxonomySetThe discoverable taxonomy set this locator belongs to.
xmlXElementThe XML element representing this locator.
Properties
Href
Gets the href attribute value referring to the target resource (may include a fragment).
public required string Href { get; init; }
Property Value
Label
Gets the xlink:label attribute value used to associate arcs with this locator.
public required string Label { get; init; }
Property Value
Resource
Gets the resource referenced by this locator (an XBRL item such as an Element or RoleType).
public required XbrlItem Resource { get; init; }