sebastienros / fluid

Fluid is an open-source .NET template engine based on the Liquid template language.
MIT License
1.35k stars 170 forks source link

Check buffer types from ASP.NET #641

Open sebastienros opened 2 months ago

sebastienros commented 2 months ago

ViewBuffer : IHtmlContentBuilder, a list of ViewBufferPage ViewBufferPage, an array of ViewBufferValue struct ViewBufferValue, wraps either a string or IHtmlContent IHtmlContentAsync

hishamco commented 2 months ago

Are these new types?

sebastienros commented 2 months ago

Only IHtmlContentAsync is newsih, the other ones are internal I think but the API looks nice. If we are using buffers or custom text writers in any way it might be something to look at for perf.