We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ran into two false positives for RZ2012.
RZ2012
@bind-Value
Component.razor
[Parameter, EditorRequired] public bool Value { get; set; } [Parameter, EditorRequired] public EventCallback<bool> ValueChanged { get; set; }
Page.razor
<Component @bind-Value="@_value" />
This will trigger the RZ2012 error for ValueChanged.
ValueChanged
@bind-Value:get
@bind-Value:set
<Component @bind-Value:get="@_value" @bind-Value:set="@SetAsync" />
This will trigger the RZ2012 error for both Value and ValueChanged.
Value
The text was updated successfully, but these errors were encountered:
ParameterState
@jjonescz Looks related to the work you did in this space #8337
Can you take a look? Thanks!
Sorry, something went wrong.
:get
:set
EditorRequired
jjonescz
Successfully merging a pull request may close this issue.
Ran into two false positives for
RZ2012
.Case
@bind-Value
Component.razor
Page.razor
This will trigger the
RZ2012
error forValueChanged
.Case
@bind-Value:get
&@bind-Value:set
Component.razor
Page.razor
This will trigger the
RZ2012
error for bothValue
andValueChanged
.The text was updated successfully, but these errors were encountered: