프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceController / Markus.Mvvm.ToolKit / AsyncCommand / IAsyncCommand.cs @ 5c387707

이력 | 보기 | 이력해설 | 다운로드 (348 Bytes)

1
using System.Threading.Tasks;
2
using System.Windows.Input;
3

    
4
namespace Markus.Mvvm.ToolKit
5
{
6
    public interface IAsyncCommand : ICommand
7
    {
8
        Task ExecuteAsync();
9
        bool CanExecute();
10
    }
11

    
12
	public interface IAsyncCommand<T> : ICommand
13
    {
14
        Task ExecuteAsync(T parameter);
15
        bool CanExecute(T parameter);
16
    }
17

    
18
}
클립보드 이미지 추가 (최대 크기: 500 MB)