Interface ISsdpLogger
Interface for a simple logging component used by RSSDP to record internal activity.
Namespace: Rssdp
Assembly: cs.temp.dll.dll
Syntax
public interface ISsdpLogger
Methods
LogError(String)
Records a message that represents an error.
Declaration
void LogError(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | The text to be logged. |
LogInfo(String)
Records a regular log message.
Declaration
void LogInfo(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | The text to be logged. |
LogVerbose(String)
Records a frequent or large log message usually only required when trying to trace a problem.
Declaration
void LogVerbose(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | The text to be logged. |
LogWarning(String)
Records an important message, but one that may not neccesarily be an error.
Declaration
void LogWarning(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | The text to be logged. |