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

◆ GetServerMessage()

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

Fetches the Server message for the error code.

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

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

168 {
169 ErrorProperties properties = GetProperties(errorCode);
170
171 if ( properties )
172 {
173 return properties.GetServerMessage(additionalInfo);
174 }
175 else
176 {
177 return additionalInfo;
178 }
179 }
ErrorProperties GetProperties(int errorCode)
Fetches the ErrorProperties for the error code.
Определения ErrorHandlerModule.c:112
string GetServerMessage(string additionalInfo="")
Определения ErrorProperties.c:26
Class which holds the properties and handling of an error.
Определения ErrorProperties.c:3

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

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