C# Класс Novell.Directory.Ldap.Utilclass.ResourcesHandler

A utility class to get strings from the ExceptionMessages and ResultCodeMessages resources.
Показать файл Открыть проект

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

Метод Описание
getMessage ( System messageOrKey, System arguments ) : System.String

Returns a string using the MessageOrKey as a key into ExceptionMessages or, if the Key does not exist, returns the string messageOrKey. In addition it formats the arguments into the message according to MessageFormat.

getMessage ( System messageOrKey, System arguments, System locale ) : System.String

Returns the message stored in the ExceptionMessages resource for the specified locale using messageOrKey and argments passed into the constructor. If no string exists in the resource then this returns the string stored in message. (This method is identical to getLdapErrorMessage(Locale locale).)

getResultString ( int code ) : System.String

Returns a string representing the Ldap result code from the default ResultCodeMessages resource.

getResultString ( int code, System locale ) : System.String

Returns a string representing the Ldap result code. The message is obtained from the locale specific ResultCodeMessage resource.

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

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

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

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

Returns a string using the MessageOrKey as a key into ExceptionMessages or, if the Key does not exist, returns the string messageOrKey. In addition it formats the arguments into the message according to MessageFormat.
public static getMessage ( System messageOrKey, System arguments ) : System.String
messageOrKey System Key string for the resource. /// ///
arguments System
Результат System.String

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

Returns the message stored in the ExceptionMessages resource for the specified locale using messageOrKey and argments passed into the constructor. If no string exists in the resource then this returns the string stored in message. (This method is identical to getLdapErrorMessage(Locale locale).)
public static getMessage ( System messageOrKey, System arguments, System locale ) : System.String
messageOrKey System Key string for the resource. /// ///
arguments System
locale System The Locale that should be used to pull message /// strings out of ExceptionMessages. /// ///
Результат System.String

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

Returns a string representing the Ldap result code from the default ResultCodeMessages resource.
public static getResultString ( int code ) : System.String
code int the result code /// ///
Результат System.String

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

Returns a string representing the Ldap result code. The message is obtained from the locale specific ResultCodeMessage resource.
public static getResultString ( int code, System locale ) : System.String
code int the result code /// ///
locale System The Locale that should be used to pull message /// strings out of ResultMessages. /// ///
Результат System.String