mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
31 lines
626 B
C#
31 lines
626 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
|
|
public class MessageResult
|
|
{
|
|
public MessageResult(Task task)
|
|
{
|
|
Task = task;
|
|
}
|
|
|
|
public Task Task { get; private set; }
|
|
|
|
public MessageResult Then(Action action)
|
|
{
|
|
var t = Task.ContinueWith((result) =>
|
|
{
|
|
Console.WriteLine("ContinueWith");
|
|
action?.Invoke();
|
|
}, TaskScheduler.Current);
|
|
return new MessageResult(t);
|
|
}
|
|
|
|
}
|
|
}
|