Exemplo n.º 1
0
 /// <summary>
 /// Recursively prints the contents of any POCO object to HTML
 /// </summary>
 public static string htmlDump(object target, HtmlDumpOptions options) => HtmlScripts.HtmlDump(target, options);
Exemplo n.º 2
0
 /// <summary>
 /// Recursively prints the contents of any POCO object to HTML with specified columns
 /// </summary>
 public static string htmlDump(object target, string[] headers) =>
 HtmlScripts.HtmlDump(target, new HtmlDumpOptions {
     Headers = headers
 });
Exemplo n.º 3
0
 /// <summary>
 /// Recursively prints the contents of any POCO object to HTML
 /// </summary>
 public static string htmlDump(object target) => HtmlScripts.HtmlDump(target, null);