BindingSource(String, String, Boolean, Boolean) Constructor

Definition

Creates a new BindingSource.

public:
 BindingSource(System::String ^ id, System::String ^ displayName, bool isGreedy, bool isFromRequest);
public BindingSource (string id, string displayName, bool isGreedy, bool isFromRequest);
new Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource : string * string * bool * bool -> Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource
Public Sub New (id As String, displayName As String, isGreedy As Boolean, isFromRequest As Boolean)

Parameters

id
String

The id, a unique identifier.

displayName
String

The display name.

isGreedy
Boolean

A value indicating whether or not the source is greedy.

isFromRequest
Boolean

A value indicating whether or not the data comes from the HTTP request.

Applies to