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 has been archived by the owner on Dec 19, 2018. It is now read-only.
Today we restrict the parent tag passed into GetTagHelpersGivenParent to not be null. However, if the parent doesn't exist then all TagHelpers without restricted parents are possible.
The text was updated successfully, but these errors were encountered:
- A `null` parent tag in all of our other API represents "any" parent tag, or in this case "root". Prior to this change we'd expect the caller to do their own verification of the parent and then assume all `TagHelperDescriptor`s are valid; this isn't sufficient because only our code base should have that knowledge.
#1188
- A `null` parent tag in all of our other API represents "any" parent tag, or in this case "root". Prior to this change we'd expect the caller to do their own verification of the parent and then assume all `TagHelperDescriptor`s are valid; this isn't sufficient because only our code base should have that knowledge.
#1188
Today we restrict the parent tag passed into
GetTagHelpersGivenParent
to not benull
. However, if the parent doesn't exist then all TagHelpers without restricted parents are possible.The text was updated successfully, but these errors were encountered: