Class ValueParserRegistration
Stores a named value parser together with its argument binder.
Inheritance
ValueParserRegistration
Assembly: NanoRoute.dll
Syntax
public sealed record ValueParserRegistration : IEquatable<ValueParserRegistration>
Constructors
ValueParserRegistration(string, ValueParserDelegate, BindArgumentsDelegate)
Stores a named value parser together with its argument binder.
Declaration
public ValueParserRegistration(string Name, ValueParserDelegate Parse, BindArgumentsDelegate BindArguments)
Parameters
Properties
BindArguments
Declaration
public BindArgumentsDelegate BindArguments { get; init; }
Property Value
Name
Declaration
public string Name { get; init; }
Property Value
Parse
Declaration
public ValueParserDelegate Parse { get; init; }
Property Value
Implements