コード例 #1
0
ファイル: Inspect.cs プロジェクト: lonelyong/ServiceStack
 /// <summary>
 /// Recursively prints the contents of any POCO object to HTML
 /// </summary>
 public static string htmlDump(object target, HtmlDumpOptions options) => HtmlScripts.HtmlDump(target, options);
コード例 #2
0
ファイル: Inspect.cs プロジェクト: lonelyong/ServiceStack
 /// <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
 });
コード例 #3
0
ファイル: Inspect.cs プロジェクト: lonelyong/ServiceStack
 /// <summary>
 /// Recursively prints the contents of any POCO object to HTML
 /// </summary>
 public static string htmlDump(object target) => HtmlScripts.HtmlDump(target, null);