BMXNET 4.0 Developer API

Call to send information to the log where an exception occured.

Namespace:  IndianHealthService.BMXNet
Assembly:  BMXNET40 (in BMXNET40.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
void Log(
	string aClass,
	string aCategory,
	Exception anException,
	params string[] lines
)
Sub Log ( _
	aClass As String, _
	aCategory As String, _
	anException As Exception, _
	ParamArray lines As String() _
)
void Log(
	String^ aClass, 
	String^ aCategory, 
	Exception^ anException, 
	... array<String^>^ lines
)

Parameters

aClass
String
A grouping of log entries
aCategory
String
A sub-grouping of log entries
anException
Exception
An exception to write to the log
lines
array< String >[]()[]
Lines of text to write to the log

See Also