tgstation-server
The /tg/station 13 server suite
ISystemIdentity.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Threading;
4 using System.Threading.Tasks;
5 
6 namespace Tgstation.Server.Host.Security
7 {
11  public interface ISystemIdentity : IDisposable
12  {
16  string Uid { get; }
17 
21  string Username { get; }
22 
27  ISystemIdentity Clone();
28 
35  Task RunImpersonated(Action action, CancellationToken cancellationToken);
36  }
37 }
Represents a user on the current System.Runtime.InteropServices.OSPlatform