Class LoopData
- Namespace
- Dynamicweb.Rendering
- Assembly
- Dynamicweb.Core.dll
Represents the parsed temp data in a loop instance.
public class LoopData
- Inheritance
-
LoopData
- Inherited Members
Remarks
Used internally. Only access this through a template instance.
Properties
Html
Gets or sets the HTML.
public string Html { get; set; }
Property Value
- string
The HTML.
Output
Gets the output.
public string? Output { get; }
Property Value
- string
The output.
OutputBuffer
Gets the output buffer.
public StringBuilder OutputBuffer { get; }
Property Value
- StringBuilder
The output buffer.
ParsedHtml
Gets or sets the parsed HTML.
public string ParsedHtml { get; set; }
Property Value
- string
The parsed HTML.
TagsCommitted
public Dictionary<string, Tag> TagsCommitted { get; set; }
Property Value
UniqueName
Gets or sets the name of the unique.
public required string UniqueName { get; set; }
Property Value
- string
The name of the unique.
Methods
ClearOutputBuffer()
Clears the output buffer.
public void ClearOutputBuffer()