Sets the detailed error message of the error item.

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 11.0.0.6296

Syntax

C#
public void setErrorDetail(
	string detail
)
Visual Basic (Declaration)
Public Sub setErrorDetail ( _
	detail As String _
)
J#
public void setErrorDetail(
	String detail
)
JScript
public function setErrorDetail(
	detail : String
)

Parameters

detail
Type: System..::.String
Error details that are set as InnerText on <detail> element of <Fault> without any pre-processing, so symbols like '<', '>', etc. will be escaped.

Remarks

Error details are always placed in <detail> tag inside CDATA block. If the instance is not an error item the method does nothing.

See Also