C# Класс SteamKit2.DebugLog

Represents the root debug logging functionality.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AddListener ( string>.Action listenerAction ) : void

Adds an action listener.

AddListener ( IDebugListener listener ) : void

Adds a listener.

RemoveListener ( string>.Action listenerAction ) : void

Removes a listener.

RemoveListener ( IDebugListener listener ) : void

Removes a listener.

WriteLine ( string category, string msg ) : void

Writes a line to the debug log, informing all listeners.

Приватные методы

Метод Описание
DebugLog ( ) : System

Initializes the DebugLog class.

Описание методов

AddListener() публичный статический Метод

Adds an action listener.
public static AddListener ( string>.Action listenerAction ) : void
listenerAction string>.Action The listener action.
Результат void

AddListener() публичный статический Метод

Adds a listener.
public static AddListener ( IDebugListener listener ) : void
listener IDebugListener The listener.
Результат void

RemoveListener() публичный статический Метод

Removes a listener.
public static RemoveListener ( string>.Action listenerAction ) : void
listenerAction string>.Action The previously registered listener action.
Результат void

RemoveListener() публичный статический Метод

Removes a listener.
public static RemoveListener ( IDebugListener listener ) : void
listener IDebugListener The listener.
Результат void

WriteLine() публичный статический Метод

Writes a line to the debug log, informing all listeners.
public static WriteLine ( string category, string msg ) : void
category string The category of the message.
msg string A composite format string.
Результат void