|
ErrorLoggerGetExceptionInfo Method
|
Gets information about an Exception complete with system and application information.
Namespace: GSF.ErrorManagementAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
Syntaxpublic static string GetExceptionInfo(
Exception ex,
bool includeUserInfo
)
Public Shared Function GetExceptionInfo (
ex As Exception,
includeUserInfo As Boolean
) As String
public:
static String^ GetExceptionInfo(
Exception^ ex,
bool includeUserInfo
)
static member GetExceptionInfo :
ex : Exception *
includeUserInfo : bool -> string
GSF.ErrorManagement.ErrorLogger.GetExceptionInfo = function(ex, includeUserInfo);
View SourceParameters
- ex Exception
- Exception whose information is to be retrieved.
- includeUserInfo Boolean
- true if user information is to be include; otherwise false.
Return Value
StringException information in text.
See Also