Table of Contents

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

object

Query

The model bound from the request query string.

public object? Query { get; set; }

Property Value

object

RootError

This property holds an error that is not assignable to any more specific parameter.

public string? RootError { get; }

Property Value

string

Methods

GetEnumerator()

Enumerates the binding sources, i.e. Body followed by Query.

public IEnumerator<object?> GetEnumerator()

Returns

IEnumerator<object>

An enumerator over the binding sources.