tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
PosixSystemIdentityFactory.cs
Go to the documentation of this file.
1using System;
2using System.Threading;
3using System.Threading.Tasks;
4
6
8{
14 {
17
19 public Task<ISystemIdentity?> CreateSystemIdentity(User user, CancellationToken cancellationToken) => throw new NotImplementedException();
20
22 public Task<ISystemIdentity?> CreateSystemIdentity(string username, string password, CancellationToken cancellationToken) => throw new NotImplementedException();
23 }
24}
Task< ISystemIdentity?> CreateSystemIdentity(User user, CancellationToken cancellationToken)
Create a ISystemIdentity for a given user .A Task<TResult> resulting in a new ISystemIdentity based o...
Task< ISystemIdentity?> CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)
Create a ISystemIdentity for a given username and password.A Task<TResult> resulting in a new ISystem...
ISystemIdentity GetCurrent()
Retrieves a ISystemIdentity representing the user executing tgstation-server.A ISystemIdentity repres...
Represents a user on the current global::System.Runtime.InteropServices.OSPlatform.