DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ GetClientMessage()

override string GetClientMessage ( int errorCode,
string additionalInfo = "" )
protected

Fetches the Client message for the error code.

Аргументы
errorCodeint The full error code
Возвращает
string The Client message for the error

См. определение в файле ErrorHandlerModule.c строка 130

131 {
132 ErrorProperties properties = GetProperties(errorCode);
133
134 if ( properties )
135 {
136 return properties.GetClientMessage(additionalInfo);
137 }
138 else
139 {
140 return additionalInfo;
141 }
142 }
ErrorProperties GetProperties(int errorCode)
Fetches the ErrorProperties for the error code.
Определения ErrorHandlerModule.c:112
string GetClientMessage(string additionalInfo="")
Определения ErrorProperties.c:18
Class which holds the properties and handling of an error.
Определения ErrorProperties.c:3

Перекрестные ссылки ErrorProperties::GetClientMessage() и GetProperties().

Используется в GetLastClientMessage().