Пример #1
0
 public static string DumpAsHtml(this object obj, string[] ignoreMembers)
 {
     return(ObjectDumper.DumpAsHtml(obj, ignoreMembers));
 }
Пример #2
0
 public static string DumpAsHtml(this object obj, string[] ignoreMembers, int maxDepth)
 {
     return(ObjectDumper.DumpAsHtml(obj, ignoreMembers, maxDepth));
 }
Пример #3
0
 public static string DumpAsHtml(this object obj, int maxDepth)
 {
     return(ObjectDumper.DumpAsHtml(obj, maxDepth));
 }
Пример #4
0
 public static string DumpAsHtml(this object obj)
 {
     return(ObjectDumper.DumpAsHtml(obj));
 }
Пример #5
0
 public static void DumpAsHtml(this object obj, TextWriter writer, string[] ignoreMembers, int maxDepth)
 {
     ObjectDumper.DumpAsHtml(obj, writer, ignoreMembers, maxDepth);
 }
Пример #6
0
 public static void DumpAsHtml(this object obj, TextWriter writer, int maxDepth)
 {
     ObjectDumper.DumpAsHtml(obj, writer, maxDepth);
 }
Пример #7
0
 public static void DumpAsHtml(this object obj, TextWriter writer)
 {
     ObjectDumper.DumpAsHtml(obj, writer);
 }