Class DataBindingSources
- Namespace
- MRX.UI.ErrorsAutoWiring.Http
- Assembly
- MRX.UI.ErrorsAutoWiring.dll
Holds the model binding sources (body and query) attached to an EditContext.
public class DataBindingSources : IEnumerable<object?>, IEnumerable
- Inheritance
-
DataBindingSources
- Implements
- Inherited Members
Properties
Body
The model bound from the request body.
public object? Body { get; set; }
Property Value
Query
The model bound from the request query string.
public object? Query { get; set; }
Property Value
RootError
This property holds an error that is not assignable to any more specific parameter.
public string? RootError { get; }
Property Value
Methods
GetEnumerator()
public IEnumerator<object?> GetEnumerator()
Returns
- IEnumerator<object>
An enumerator over the binding sources.