Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface AuthenticationProvider

A provider for performing authentication to a service.

层级

  • AuthenticationProvider

索引

Properties(1)

Methods(3)

Properties(1)

Readonly onDidChangeSessions

An Event which fires when the array of sessions has changed, or data within a session has changed.

Methods(3)

getSessions

  • Get a list of sessions.

    Parameters

    • Optional scopes: readonly string[]

      An optional list of scopes. If provided, the sessions returned should match these permissions, otherwise all sessions should be returned.

    Returns Thenable<readonly AuthenticationSession[]>

    A promise that resolves to an array of authentication sessions.

createSession

  • Prompts a user to login.

    If login is successful, the onDidChangeSessions event should be fired.

    If login fails, a rejected promise should be returned.

    If the provider has specified that it does not support multiple accounts, then this should never be called if there is already an existing session matching these scopes.

    Parameters

    • scopes: readonly string[]

      A list of scopes, permissions, that the new session should be created with.

    Returns Thenable<AuthenticationSession>

    A promise that resolves to an authentication session.

removeSession

  • removeSession(sessionId: string): Thenable<void>
  • Removes the session corresponding to session id.

    If the removal is successful, the onDidChangeSessions event should be fired.

    If a session cannot be removed, the provider should reject with an error message.

    Parameters

    • sessionId: string

      The id of the session to remove.

    Returns Thenable<void>

友链:VS Code 中文文档 | VS Code 官网文档 | VS Code 扩展市场

Generated by TypeDoc. Maintained by 洛竹