StauffConsulting.Essentials.| C#: |
public interface IProgressReporter
|
| VB: |
Public Interface IProgressReporter End Interface
|
| Type Ancestry: | IProgressReporter |
| int |
ErrorCount |
The number of errors encountered. |
| int |
WarningCount |
The number of warnings encountered. |
Clear |
Clears the progress report. |
Indent |
Increase indentation by 1 level |
Log |
Log text (without an implicit newline). |
LogError |
Log an error. |
LogException |
Log an exception. |
LogException |
Log an exception. |
LogLine |
Log a line of text. |
LogWarning |
Log a warning. |
Outdent |
Decrease indentation by 1 level |
OutdentAll |
Remove all indentation levels. |
| C#: |
int ErrorCount
|
| VB: |
Property ErrorCount() As Integer
|
The number of errors encountered.
| C#: |
int WarningCount
|
| VB: |
Property WarningCount() As Integer
|
The number of warnings encountered.
| C#: |
static Void Clear()
|
| VB: |
Shared Function Clear() As Void
|
| C#: |
static Void Indent()
|
| VB: |
Shared Function Indent() As Void
|
| C#: |
static Void Log(string text)
|
| VB: |
Shared Function Log(ByVal text As String) As Void
|
Parameters
text |
| C#: |
static Void LogError(string descr)
|
| VB: |
Shared Function LogError(ByVal descr As String) As Void
|
Parameters
descr |
| C#: |
static Void LogException(System.Exception x,
string context)
|
| VB: |
Shared Function LogException(ByVal x As System.Exception, ByVal context As String) As Void
|
Parameters
x | |
context | descriptive info about where the exception occurred |
| C#: |
static Void LogException(System.Exception x)
|
| VB: |
Shared Function LogException(ByVal x As System.Exception) As Void
|
Parameters
x |
| C#: |
static Void LogLine(string descr)
|
| VB: |
Shared Function LogLine(ByVal descr As String) As Void
|
Parameters
descr |
| C#: |
static Void LogWarning(string descr)
|
| VB: |
Shared Function LogWarning(ByVal descr As String) As Void
|
Parameters
descr |
| C#: |
static Void Outdent()
|
| VB: |
Shared Function Outdent() As Void
|
| C#: |
static Void OutdentAll()
|
| VB: |
Shared Function OutdentAll() As Void
|