You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Workflow.ComponentModel;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Security.Permissions;
|
||||
using System.Workflow.Runtime.Hosting;
|
||||
|
||||
namespace System.Workflow.Runtime.Tracking
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains data useful when construction tracking channels
|
||||
/// </summary>
|
||||
[Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
|
||||
public sealed class TrackingParameters
|
||||
{
|
||||
private Guid _instanceId = Guid.Empty;
|
||||
private Guid _callerInstanceId = Guid.Empty;
|
||||
private Type _workflowType = null;
|
||||
private IList<string> _activityCallPath = null;
|
||||
private Guid _contextGuid = Guid.Empty, _callerContextGuid = Guid.Empty, _callerParentContextGuid = Guid.Empty;
|
||||
private Activity _rootActivity = null;
|
||||
|
||||
private TrackingParameters()
|
||||
{
|
||||
}
|
||||
|
||||
public TrackingParameters(Guid instanceId, Type workflowType, Activity rootActivity, IList<string> callPath, Guid callerInstanceId, Guid contextGuid, Guid callerContextGuid, Guid callerParentContextGuid)
|
||||
{
|
||||
_instanceId = instanceId;
|
||||
_workflowType = workflowType;
|
||||
_activityCallPath = callPath;
|
||||
_callerInstanceId = callerInstanceId;
|
||||
_contextGuid = contextGuid;
|
||||
_callerContextGuid = callerContextGuid;
|
||||
_callerParentContextGuid = callerParentContextGuid;
|
||||
_rootActivity = rootActivity;
|
||||
}
|
||||
|
||||
public Guid InstanceId
|
||||
{
|
||||
get { return _instanceId; }
|
||||
}
|
||||
|
||||
public Type WorkflowType
|
||||
{
|
||||
get { return _workflowType; }
|
||||
}
|
||||
|
||||
public Activity RootActivity
|
||||
{
|
||||
get { return _rootActivity; }
|
||||
}
|
||||
|
||||
public IList<string> CallPath
|
||||
{
|
||||
get { return _activityCallPath; }
|
||||
}
|
||||
|
||||
public Guid CallerInstanceId
|
||||
{
|
||||
get { return _callerInstanceId; }
|
||||
}
|
||||
|
||||
public Guid ContextGuid
|
||||
{
|
||||
get { return _contextGuid; }
|
||||
}
|
||||
|
||||
public Guid CallerContextGuid
|
||||
{
|
||||
get { return _callerContextGuid; }
|
||||
}
|
||||
|
||||
public Guid CallerParentContextGuid
|
||||
{
|
||||
get { return _callerParentContextGuid; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user