Register a dbginfo item on the page (with sublist information).


Namespace: NetQuarry
Assembly: EAP.Core (in EAP.Core.dll)

Syntax

Visual Basic (Declaration)
Public Sub RegisterDebugInfo( _ 
   ByVal page As Page,  _ 
   ByVal name As String,  _ 
   ByVal value As String,  _ 
   ByVal category As String,  _ 
   ByVal sublist As String _ 
) _
    Implements IAppContext.RegisterDebugInfo
C#
public void RegisterDebugInfo(
   Page page,
   string name,
   string value,
   string category,
   string sublist
)
C++
public:
 void RegisterDebugInfo(
   Page page,
   String name,
   String value,
   String category,
   String sublist
) sealed 
J#
public void RegisterDebugInfo(
   Page page,
   string name,
   string value,
   string category,
   string sublist
)
JScript
public  function RegisterDebugInfo(
   page : Page,
   name : String,
   value : String,
   category : String,
   sublist : String
)

Parameters

page
The page on which to register.
name
The name of the debug item.
value
The value of the debug item.
category
The category of debug item.
sublist
A semi-colon separated list of items to be shown as subitems.

Implements

IAppContext.RegisterDebugInfo

See Also