<PackageReference Include="Castle.Windsor" Version="6.0.0" />

NamedAttribute

public class NamedAttribute
Represents a named attribute.
namespace Castle.MicroKernel.Registration { public class NamedAttribute { private readonly string name; internal NamedAttribute(string name) { this.name = name; } public Attrib Eq(string value) { return new Attrib(name, value); } public Attrib Eq(object value) { string value2 = (value != null) ? value.ToString() : string.Empty; return new Attrib(name, value2); } } }