TrackingWorkflowExceptionEventArgs.Exception Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Exception Pobiera element zgłaszany przez wystąpienie przepływu pracy.
public:
property Exception ^ Exception { Exception ^ get(); };
public Exception Exception { get; }
member this.Exception : Exception
Public ReadOnly Property Exception As Exception
Wartość właściwości
Wyjątek zgłaszany przez wystąpienie przepływu pracy.
Przykłady
Poniższy przykład kodu przedstawia metodę o nazwie WriteExceptionEventArgs
, która przechwytuje TrackingWorkflowExceptionEventArgselement . Kod sprawdza, czy Exception właściwość to null
(Nothing
w Visual Basic). Jeśli tak nie jest, kod zapisuje komunikat skojarzony z właściwością Exception do konsoli. Jeśli wyjątek to null
(Nothing
), kod konwertuje wartość OriginalActivityPath właściwości na ciąg i zapisuje ją w konsoli.
Ten przykład kodu jest częścią przykładu zestawu SDK śledzenia usługi EventArgs z pliku Program.cs. Aby uzyskać więcej informacji, zobacz EventArgs Tracking Sample (Przykład śledzenia usługi EventArgs).
static void WriteExceptionEventArgs(string eventDescription, TrackingWorkflowExceptionEventArgs exceptionEventArgs, DateTime eventDataTime)
{
Console.WriteLine("\nException Event Arguments Read From Tracking Database:\n");
Console.WriteLine("EventDataTime: " + eventDataTime.ToString());
Console.WriteLine("EventDescription: " + eventDescription);
if (null != exceptionEventArgs.Exception)
{
Console.WriteLine("ExceptionEventArgs Exception Message: " + exceptionEventArgs.Exception.Message.ToString());
}
Console.WriteLine("ExceptionEventArgs Original Activity Path: " + exceptionEventArgs.OriginalActivityPath.ToString());
}
Shared Sub WriteExceptionEventArgs(ByVal eventDescription As String, ByVal exceptionEventArgs As TrackingWorkflowExceptionEventArgs, ByVal eventDataTime As DateTime)
Console.WriteLine(vbCrLf + "Exception Event Arguments Read From Tracking Database:")
Console.WriteLine("EventDataTime: " + eventDataTime.ToString(CultureInfo.CurrentCulture))
Console.WriteLine("EventDescription: " + eventDescription)
If exceptionEventArgs.Exception IsNot Nothing Then
Console.WriteLine("ExceptionEventArgs Exception Message: " + exceptionEventArgs.Exception.Message.ToString())
End If
Console.WriteLine("ExceptionEventArgs Original Activity Path: " + exceptionEventArgs.OriginalActivityPath.ToString())
End Sub