Esempio 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);
Esempio 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
 });
Esempio 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);