Udostępnij za pośrednictwem


SqlTrackingWorkflowInstance.Initialized Właściwość

Definicja

Pobiera lub ustawia element DateTime wskazujący czas, w którym pierwsze TrackingChannel wystąpienie przepływu pracy zostało żądane przez aparat czasu wykonywania przepływu pracy.

public:
 property DateTime Initialized { DateTime get(); void set(DateTime value); };
public DateTime Initialized { get; set; }
member this.Initialized : DateTime with get, set
Public Property Initialized As DateTime

Wartość właściwości

Element DateTime wskazujący czas, w którym pierwsze TrackingChannel dla tego wystąpienia przepływu pracy zostało żądane przez aparat czasu wykonywania przepływu pracy.

Przykłady

Poniższy przykład kodu pokazuje, jak uzyskać informacje o wszystkich SqlTrackingWorkflowInstance obiektach zawartych na liście wyświetlanych przepływów pracy. Kod tworzy element ListViewItem dla każdego SqlTrackingWorkflowInstance znalezionego w zmiennej displayedWorkflows . Każda z nich ListViewItem zawiera reprezentację WorkflowInstanceInternalIdciągu właściwości , WorkflowType i Status . Następnie dodaje element do elementu workflowStatusList. Kod używa wcześniej nazwanych wartości właściwości i wersji Initialized ciągu właściwości, aby utworzyć nowy WorkflowStatusInfo obiekt, który jest również dodawany do workflowStatusListobiektu .

Ten przykład kodu jest częścią przykładu zestawu SDK monitora przepływu pracy z pliku Mainform.cs. Aby uzyskać więcej informacji, zobacz Monitor przepływu pracy.

static void WriteTerminatedEventArgs(string eventDescription, TrackingWorkflowTerminatedEventArgs terminatedEventArgs, DateTime eventDataTime)
{
    Console.WriteLine("\nTerminated Event Arguments Read From Tracking Database:\n");
    Console.WriteLine("EventDataTime: " + eventDataTime.ToString());
    Console.WriteLine("EventDescription: " + eventDescription);
    if (null != terminatedEventArgs.Exception)
    {
        Console.WriteLine("TerminatedEventArgs Exception Message: " + terminatedEventArgs.Exception.Message.ToString());
    }
}
Shared Sub WriteTerminatedEventArgs(ByVal eventDescription As String, ByVal terminatedEventArgs As TrackingWorkflowTerminatedEventArgs, ByVal eventDataTime As DateTime)
    Console.WriteLine(vbCrLf + "Terminated Event Arguments Read From Tracking Database:")
    Console.WriteLine("EventDataTime: " + eventDataTime.ToString(CultureInfo.CurrentCulture))
    Console.WriteLine("EventDescription: " + eventDescription)
    If terminatedEventArgs.Exception IsNot Nothing Then
        Console.WriteLine("TerminatedEventArgs Exception Message: " + terminatedEventArgs.Exception.Message.ToString())
    End If
End Sub

Dotyczy

Zobacz też