Show / Hide Table of Contents

Class CustomerAuthenticationDetailsProvider

An abstract class for user-based authentication details provider.

Inheritance
object
CustomerAuthenticationDetailsProvider
SimpleAuthenticationDetailsProvider
Implements
IAuthenticationDetailsProvider
IBasicAuthenticationDetailsProvider
IAbstractAuthenticationDetailsProvider
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 abstract class CustomerAuthenticationDetailsProvider : IAuthenticationDetailsProvider, IBasicAuthenticationDetailsProvider, IAbstractAuthenticationDetailsProvider

Fields

logger

Declaration
protected static Logger logger
Field Value
Type Description
Logger

Properties

Fingerprint

Declaration
public string Fingerprint { get; set; }
Property Value
Type Description
string

KeyId

Declaration
public string KeyId { get; }
Property Value
Type Description
string

PassPhraseCharacters

Declaration
public char[] PassPhraseCharacters { get; set; }
Property Value
Type Description
char[]

TenantId

Declaration
public string TenantId { get; set; }
Property Value
Type Description
string

UserId

Declaration
public string UserId { get; set; }
Property Value
Type Description
string

Methods

GetPrivateKey()

Declaration
public abstract RsaKeyParameters GetPrivateKey()
Returns
Type Description
RsaKeyParameters

Implements

IAuthenticationDetailsProvider
IBasicAuthenticationDetailsProvider
IAbstractAuthenticationDetailsProvider
In this article
Back to top