本文整理汇总了C#中System.Threading.Task.Activate方法的典型用法代码示例。如果您正苦于以下问题:C# Task.Activate方法的具体用法?C# Task.Activate怎么用?C# Task.Activate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Threading.Task
的用法示例。
在下文中一共展示了Task.Activate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestCreateToReadyMultiplePotentialOwners
public void TestCreateToReadyMultiplePotentialOwners()
{
IdentityId initiatorId = new IdentityId();
IdentityId potentialOwnerOne = new IdentityId();
IdentityId potentialOwnerTwo = new IdentityId();
IdentityId businessAdminId = new IdentityId();
IPrincipal initiator = new ClaimsPrincipal(initiatorId.GetIdentity());
_mapStorage[potentialOwnerOne.Id] = new Account(potentialOwnerOne, "s-1-2-3-4-5", "auth", AccountType.User);
_mapStorage[potentialOwnerTwo.Id] = new Account(potentialOwnerTwo, "s-1-2-3-4-5", "auth", AccountType.User);
_mapStorage[businessAdminId.Id] = new Account(businessAdminId, "s-55-2-3-4-5", "auth", AccountType.User);
ILoggingService loggingService = SetupLoggerMock(new List<TaskHistoryEvent> {
new TaskHistoryEvent{
Event = "Create",
OldStatus = TaskStatus.None,
NewStatus = TaskStatus.Created,
OldPriority = Priority.Normal,
NewPriority = Priority.Normal,
Comment = "",
TimeStamp = DateTime.UtcNow,
UserId = initiator.Identity.GetMappedId()}
});
Thread.CurrentPrincipal = initiator;
Task task = new Task(new TaskId(), TaskStatus.Created, string.Empty,
string.Empty, Priority.Normal, false,
DateTime.UtcNow, initiator.Identity,
null, null, null)
{
LoggingService = loggingService
};
Assert.AreEqual(TaskStatus.Created, task.Status);
task.PotentialOwners.Add(potentialOwnerOne.GetIdentity());
task.PotentialOwners.Add(potentialOwnerTwo.GetIdentity());
task.BusinessAdministrators.Add(businessAdminId.GetIdentity());
Assert.IsNotNull(task);
Assert.AreEqual(TaskStatus.Created, task.Status);
IPrincipal businessAdmin = new ClaimsPrincipal(businessAdminId.GetIdentity());
Thread.CurrentPrincipal = businessAdmin;
task.Activate();
Assert.AreEqual(TaskStatus.Ready, task.Status);
Assert.IsNull(task.ActualOwner);
Assert.IsNotNull(task.History);
Assert.AreEqual(2, task.History.Count());
TaskHistoryEvent history = task.History.ElementAt(0);
Assert.IsNotNull(history);
Assert.AreEqual(TaskStatus.None, history.OldStatus);
Assert.AreEqual(TaskStatus.Created, history.NewStatus);
Assert.AreEqual(initiator.Identity.GetMappedId(), history.UserId);
history = task.History.ElementAt(1);
Assert.IsNotNull(history);
}