'Declaration
Public Overloads Shared Sub RecordException( _ ByVal skipFrames As Integer, _ ByVal exception As Exception, _ ByVal detailsXml As String, _ ByVal category As String, _ ByVal canContinue As Boolean _ )
public static void RecordException( int skipFrames, Exception exception, string detailsXml, string category, bool canContinue )
Parameters
- skipFrames
- The number of stack frames to skip back over to determine the original caller.
- exception
- An Exception object to record as a log message. This call is ignored if null.
- detailsXml
- Optional. An XML document with extended details about the exception. Can be null.
- category
- The application subsystem or logging category that the message will be associated with.
- canContinue
- True if the application can continue after this call, false if this is a fatal error and the application can not continue after this call.