This repository was archived by the owner on Dec 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Tag Helpers: Expose way to provide and use a writer on a RazorPage #1102
Comments
NTaylorMullen
added a commit
that referenced
this issue
Sep 25, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers who's ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Sep 25, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers who's ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Sep 26, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers who's ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Sep 29, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Sep 29, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Sep 30, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Oct 2, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Oct 3, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Oct 5, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Oct 6, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Oct 8, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
NTaylorMullen
added a commit
that referenced
this issue
Oct 9, 2014
- RazorPage now has the ability to use writing scopes to control where things are written. - This enables RazorPages to use these writing scopes with TagHelpers. TagHelpers use them to buffer attributes that have C# contained within them and to also buffer content of TagHelpers whos ContentBehavior is Modify. - Added RazorPage tests to validate their functionality. #1102
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Tag Helpers occasionally buffer body data and can have children that write to the output stream. In the case that we have a
TagHelper
that has anHTMLHelper
child that writes directly to theRazorPage
body we need a way to override this behavior and have it write to the bufferedTagHelper
body.The majority of the 3 day estimate involves designing the feature.
The text was updated successfully, but these errors were encountered: