Ejemplo n.º 1
0
 public static string DumpAsHtml(this object obj, string[] ignoreMembers)
 {
     return(ObjectDumper.DumpAsHtml(obj, ignoreMembers));
 }
Ejemplo n.º 2
0
 public static string DumpAsHtml(this object obj, string[] ignoreMembers, int maxDepth)
 {
     return(ObjectDumper.DumpAsHtml(obj, ignoreMembers, maxDepth));
 }
Ejemplo n.º 3
0
 public static string DumpAsHtml(this object obj, int maxDepth)
 {
     return(ObjectDumper.DumpAsHtml(obj, maxDepth));
 }
Ejemplo n.º 4
0
 public static string DumpAsHtml(this object obj)
 {
     return(ObjectDumper.DumpAsHtml(obj));
 }
Ejemplo n.º 5
0
 public static void DumpAsHtml(this object obj, TextWriter writer, string[] ignoreMembers, int maxDepth)
 {
     ObjectDumper.DumpAsHtml(obj, writer, ignoreMembers, maxDepth);
 }
Ejemplo n.º 6
0
 public static void DumpAsHtml(this object obj, TextWriter writer, int maxDepth)
 {
     ObjectDumper.DumpAsHtml(obj, writer, maxDepth);
 }
Ejemplo n.º 7
0
 public static void DumpAsHtml(this object obj, TextWriter writer)
 {
     ObjectDumper.DumpAsHtml(obj, writer);
 }