C# Class JsonFx.UI.Jbst.JbstBuildResult

Encapsulates the binding logic for instantiating a JBST on a page.
Exibir arquivo Open project: pocket-playlab/jsonfx-v1 Class Usage Examples

Public Methods

Method Description
FindJbst ( string jbstName ) : JbstBuildResult
JbstBuildResult ( JsonFx.Json.EcmaScriptIdentifier jbstName ) : System

Ctor

JbstBuildResult ( JsonFx.Json.EcmaScriptIdentifier jbstName, AutoMarkupType autoMarkup ) : System

Ctor

Write ( TextWriter writer, object data ) : void

Renders the JBST control reference and any stored data to be used.

Write ( TextWriter writer, object data, int index, int count ) : void

Renders the JBST control reference and any stored data to be used.

Private Methods

Method Description
Write ( TextWriter writer, object data, int index, int count, InnerCallback inner ) : void

Renders the JBST control reference and any stored data to be used.

Method Details

FindJbst() public static method

public static FindJbst ( string jbstName ) : JbstBuildResult
jbstName string
return JbstBuildResult

JbstBuildResult() public method

Ctor
public JbstBuildResult ( JsonFx.Json.EcmaScriptIdentifier jbstName ) : System
jbstName JsonFx.Json.EcmaScriptIdentifier
return System

JbstBuildResult() public method

Ctor
public JbstBuildResult ( JsonFx.Json.EcmaScriptIdentifier jbstName, AutoMarkupType autoMarkup ) : System
jbstName JsonFx.Json.EcmaScriptIdentifier
autoMarkup AutoMarkupType
return System

Write() public method

Renders the JBST control reference and any stored data to be used.
public Write ( TextWriter writer, object data ) : void
writer System.IO.TextWriter output
data object data to be bound as an object which will be serialized
return void

Write() public method

Renders the JBST control reference and any stored data to be used.
public Write ( TextWriter writer, object data, int index, int count ) : void
writer System.IO.TextWriter output
data object data to be bound as an object which will be serialized
index int the data index
count int the total data count
return void