e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
56 lines
1.7 KiB
C#
56 lines
1.7 KiB
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace System.Activities
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime;
|
|
|
|
[Fx.Tag.XamlVisible(false)]
|
|
public class WorkflowApplicationCompletedEventArgs : WorkflowApplicationEventArgs
|
|
{
|
|
ActivityInstanceState completionState;
|
|
Exception terminationException;
|
|
IDictionary<string, object> outputs;
|
|
|
|
internal WorkflowApplicationCompletedEventArgs(WorkflowApplication application, Exception terminationException, ActivityInstanceState completionState, IDictionary<string, object> outputs)
|
|
: base(application)
|
|
{
|
|
Fx.Assert(ActivityUtilities.IsCompletedState(completionState), "event should only fire for completed activities");
|
|
this.terminationException = terminationException;
|
|
this.completionState = completionState;
|
|
this.outputs = outputs;
|
|
}
|
|
|
|
public ActivityInstanceState CompletionState
|
|
{
|
|
get
|
|
{
|
|
return this.completionState;
|
|
}
|
|
}
|
|
|
|
public IDictionary<string, object> Outputs
|
|
{
|
|
get
|
|
{
|
|
if (this.outputs == null)
|
|
{
|
|
this.outputs = ActivityUtilities.EmptyParameters;
|
|
}
|
|
return this.outputs;
|
|
}
|
|
}
|
|
|
|
public Exception TerminationException
|
|
{
|
|
get
|
|
{
|
|
return this.terminationException;
|
|
}
|
|
}
|
|
}
|
|
}
|