csharp-sdk-upm/Storage/Source/Internal/User/Controller/IAVCurrentUserController.cs

12 lines
343 B
C#
Raw Normal View History

2019-07-19 15:01:34 +08:00
using System;
using System.Threading;
using System.Threading.Tasks;
namespace LeanCloud.Storage.Internal {
public interface IAVCurrentUserController : IAVObjectCurrentController<AVUser> {
Task<string> GetCurrentSessionTokenAsync(CancellationToken cancellationToken);
Task LogOutAsync(CancellationToken cancellationToken);
}
}