CompositeBindingSource Class

Definition

A BindingSources which can represent multiple value-provider data sources.

public ref class CompositeBindingSource : Microsoft::AspNetCore::Mvc::ModelBinding::BindingSource
public class CompositeBindingSource : Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource
type CompositeBindingSource = class
    inherit BindingSource
Public Class CompositeBindingSource
Inherits BindingSource
Inheritance
CompositeBindingSource

Properties

BindingSources

Gets the set of BindingSource entries.

DisplayName

Gets the display name for the source.

(Inherited from BindingSource)
Id

Gets the unique identifier for the source. Sources are compared based on their Id.

(Inherited from BindingSource)
IsFromRequest

Gets a value indicating whether or not the binding source uses input from the current HTTP request.

(Inherited from BindingSource)
IsGreedy

Gets a value indicating whether or not a source is greedy. A greedy source will bind a model in a single operation, and will not decompose the model into sub-properties.

(Inherited from BindingSource)

Methods

CanAcceptDataFrom(BindingSource)

Gets a value indicating whether or not the BindingSource can accept data from bindingSource.

Create(IEnumerable<BindingSource>, String)

Creates a new CompositeBindingSource.

Equals(BindingSource) (Inherited from BindingSource)
Equals(Object) (Inherited from BindingSource)
GetHashCode() (Inherited from BindingSource)

Applies to