Share via


Report.dump Method

Definition

Writes an overview of the report's contents to the Infolog.

public:
 virtual void dump();
public virtual void dump ();
abstract member dump : unit -> unit
override this.dump : unit -> unit
Public Overridable Sub dump ()

Remarks

The lines written to the Infolog are identical to the information shown when you expand the report in the AOT.

The following example demonstrates the dump method.

static void testReportDump(args a) 
{ 
    report r = new report("cust"); 
    r.Dump(); 
}

Applies to