Table of Contents

Class LoopData

Namespace
Dynamicweb.Rendering
Assembly
Dynamicweb.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.

TagsCommited

[Obsolete("Use TagsCommitted instead.")]
public Dictionary<string, Tag> TagsCommited { get; set; }

Property Value

Dictionary<string, Tag>

TagsCommitted

public Dictionary<string, Tag> TagsCommitted { get; set; }

Property Value

Dictionary<string, Tag>

UniqueName

Gets or sets the name of the unique.
public string UniqueName { get; set; }

Property Value

string
The name of the unique.

Methods

ClearOutputBuffer()

Clears the output buffer.
public void ClearOutputBuffer()
To top