зеркало из https://github.com/DeGsoft/maui-linux.git
13 строки
304 B
C#
13 строки
304 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
//this will go once Timer is included in Pcl profiles
|
|
internal interface ITimer
|
|
{
|
|
void Change(int dueTime, int period);
|
|
void Change(long dueTime, long period);
|
|
void Change(TimeSpan dueTime, TimeSpan period);
|
|
void Change(uint dueTime, uint period);
|
|
}
|
|
} |