Share via


BindInputElementAttribute Constructor

Definition

Constructs an instance of BindInputElementAttribute.

public:
 BindInputElementAttribute(System::String ^ type, System::String ^ suffix, System::String ^ valueAttribute, System::String ^ changeAttribute, bool isInvariantCulture, System::String ^ format);
public BindInputElementAttribute (string type, string suffix, string valueAttribute, string changeAttribute, bool isInvariantCulture, string format);
public BindInputElementAttribute (string? type, string? suffix, string? valueAttribute, string? changeAttribute, bool isInvariantCulture, string? format);
new Microsoft.AspNetCore.Components.BindInputElementAttribute : string * string * string * string * bool * string -> Microsoft.AspNetCore.Components.BindInputElementAttribute
Public Sub New (type As String, suffix As String, valueAttribute As String, changeAttribute As String, isInvariantCulture As Boolean, format As String)

Parameters

type
String

The value of the element's type attribute.

suffix
String

The suffix value.

valueAttribute
String

The name of the value attribute to be bound.

changeAttribute
String

The name of an attribute that will register an associated change event.

isInvariantCulture
Boolean

Determines whether binding will use InvariantCulture or CurrentCulture.

format
String

An optional format to use when converting values.

Applies to