You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The check SA1612: The parameter '{param name}' does not exist. is being triggered by parameters that use the prefixed keywords for parameters. I'm using the 1.1.0-beta001 version of the analyzer.
For the record, the problem was that the rule tried to get the parameter name through parameter.Identifier.Text, but that property contains the actual text written in the code, which in this case is "@event". On the other hand, parameter.Identifier.ValueText contains just "event", so I changed the code to use that property instead.
The check
SA1612: The parameter '{param name}' does not exist.
is being triggered by parameters that use the prefixed keywords for parameters. I'm using the 1.1.0-beta001 version of the analyzer.The text was updated successfully, but these errors were encountered: