Boost.GraphQL.SecurityMutations.StopAuthServerAsync C# (CSharp) Méthode

StopAuthServerAsync() public méthode

public StopAuthServerAsync ( IAuthWebServer authWebServer, Guid id, CancellationToken cancellationToken ) : Task
authWebServer IAuthWebServer
id Guid
cancellationToken CancellationToken
Résultat Task
        public async Task<string> StopAuthServerAsync(
            [Service] IAuthWebServer authWebServer,
            Guid id,
            CancellationToken cancellationToken)
        {
            await authWebServer.StopAsync(id, cancellationToken);

            return id.ToString("N");
        }