BindElementAttribute(String, String, String, String) Constructor
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.
Constructs an instance of BindElementAttribute.
public:
BindElementAttribute(System::String ^ element, System::String ^ suffix, System::String ^ valueAttribute, System::String ^ changeAttribute);
public BindElementAttribute (string element, string suffix, string valueAttribute, string changeAttribute);
public BindElementAttribute (string element, string? suffix, string valueAttribute, string changeAttribute);
new Microsoft.AspNetCore.Components.BindElementAttribute : string * string * string * string -> Microsoft.AspNetCore.Components.BindElementAttribute
Public Sub New (element As String, suffix As String, valueAttribute As String, changeAttribute As String)
Parameters
- element
- String
The tag name of the element.
- suffix
- String
The suffix value. For example, set this to value
for bind-value
, or set this to null
for bind
.
- 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.