CompositeBindingSource.Create Method

Definition

Creates a new CompositeBindingSource.

public:
 static Microsoft::AspNetCore::Mvc::ModelBinding::CompositeBindingSource ^ Create(System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Mvc::ModelBinding::BindingSource ^> ^ bindingSources, System::String ^ displayName);
public static Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource Create (System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource> bindingSources, string displayName);
static member Create : seq<Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource> * string -> Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource
Public Shared Function Create (bindingSources As IEnumerable(Of BindingSource), displayName As String) As CompositeBindingSource

Parameters

bindingSources
IEnumerable<BindingSource>

The set of BindingSource entries. Must be value-provider sources and user input.

displayName
String

The display name for the composite source.

Returns

A CompositeBindingSource.

Applies to