Method | Description | |
---|---|---|
AddKey ( string key, dynamic value ) : |
||
CompileString ( string input ) : string |
Compiles a string template
|
|
CompileXml ( Stream stream, XmlElement>.Func |
Compiles a Xml template using the specified stream with default settings.
|
|
CompileXml ( TextReader textReader, XmlElement>.Func |
Compiles a Xml template by using the specified text reader.
|
|
CompileXml ( XmlReader xmlReader, XmlElement>.Func |
Compiles a Xml template with a specified XmlReader
|
|
CompileXml ( string uri, XmlElement>.Func |
Compiles a Xml template with specified URI.
|
|
SetScope ( dynamic>.Dictionary |
Method | Description | |
---|---|---|
Compiler ( ) : System | ||
_readXml ( XmlReader reader ) : |
public AddKey ( string key, dynamic value ) : |
||
key | string | |
value | dynamic | |
return |
public CompileString ( string input ) : string | ||
input | string | |
return | string |
public CompileXml ( Stream stream, XmlElement>.Func |
||
stream | Stream | |
root | XmlElement>.Func | /// Set the root to compile, to improve performance. /// example: x => x.Children.First(y => x.Name == "MyElement") /// |
return | string |
public CompileXml ( TextReader textReader, XmlElement>.Func |
||
textReader | TextReader | |
root | XmlElement>.Func | /// Set the root to compile, to improve performance. /// example: x => x.Children.First(y => x.Name == "MyElement") /// |
return | string |
public CompileXml ( XmlReader xmlReader, XmlElement>.Func |
||
xmlReader | XmlReader | |
root | XmlElement>.Func | /// Set the root to compile, to improve performance. /// example: x => x.Children.First(y => x.Name == "MyElement") /// |
return | string |
public CompileXml ( string uri, XmlElement>.Func |
||
uri | string | |
root | XmlElement>.Func | /// Set the root to compile, to improve performance. /// example: x => x.Children.First(y => x.Name == "MyElement") /// |
return | string |
public SetScope ( dynamic>.Dictionary |
||
scope | dynamic>.Dictionary | |
return |