CompositeBindingSource.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.