本文整理匯總了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);
}