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
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
Right now all public get; set; properties on a TagHelper are automatically bound to HTML with no way to opt-out. Adding a [NotBound] attribute (or another attribute name) would enable users to opt-out of TagHelper binding.
Example:
classDivTagHelper:TagHelper{[NotBound]publicstringMyValue{get;set;}// Is not auto-filled and is not expected to be represented in HTML.}