Show / Hide Table of Contents

Class FileDelegationTokenSupplier

A file-based delegation token provider. This class reads a delegation token from a file.

Inheritance
object
FileDelegationTokenSupplier
Implements
ISupplier<string>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.Common.Auth
Assembly: OCI.DotNetSDK.Common.dll
Syntax
public class FileDelegationTokenSupplier : ISupplier<string>

Constructors

FileDelegationTokenSupplier(string)

Declaration
public FileDelegationTokenSupplier(string delegationTokenPath)
Parameters
Type Name Description
string delegationTokenPath

Fields

delegationToken

Declaration
protected string delegationToken
Field Value
Type Description
string

delegationTokenPath

Declaration
protected readonly string delegationTokenPath
Field Value
Type Description
string

Methods

GetKey()

Gets the delegation token.

Declaration
public string GetKey()
Returns
Type Description
string

Delegation token string.

Implements

ISupplier<T>
In this article
Back to top