public struct NamedAttributeArgument

assembly RefDocGen
namespace RefDocGen.CodeElements.Types.Abstract.Attribute
Base type:  ValueType

Represents a named argument of an attribute.

Constructors

public NamedAttributeArgument(string Name, object Value) #
Represents a named argument of an attribute.
Parameters
string Name
Name of the attribute argument.
object Value
Value of the attribute argument.

Properties

public string Name { get; init; } #
Name of the attribute argument.
public object Value { get; init; } #
Value of the attribute argument.