Returns a String representation of the exception using the specified locale. This method is thread safe.


Namespace: FileNet.Api.Exception
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Function ToString( _ 
   ByVal le As CultureInfo,  _ 
   ByVal args As Object() _ 
) As String
C#
public override string ToString(
   CultureInfo le,
   object[] args
)
C++
public:
 virtual String ToString(
   CultureInfo le,
   array<Object>^ args
) override 
J#
public override string ToString(
   CultureInfo le,
   object[] args
)
JScript
public override  function ToString(
   le : CultureInfo,
   args : Object[]
) : String

Parameters

le
A Locale object specifying the locale to use for the exception.
args
An Object array containing the exception message values (code arguments in use when the exception occurred).

Return Value

A String representation of the exception message, based on the specified locale.

See Also