Table of Contents

Namespace DxFeed.Graal.Net.Auth

Classes

AuthToken

The AuthToken class represents an authorization token and encapsulates information about the authorization scheme and its associated value.

An AuthToken consists of the following components:
  • Scheme - The authorization scheme (e.g., "Basic" or "Bearer").
  • Value - The encoded value, which is scheme-dependent (e.g., an access token per RFC6750 or Base64-encoded "user:password" per RFC2617).
  • String representation - A string that combines the scheme and value in the format: [scheme + " " + value].