Table of Contents

Class OpenAuthorizationData

Namespace
Songhay.Models
Assembly
SonghayCore.dll

Defines Authorization Information for OAuth 1.0.

public class OpenAuthorizationData
Inheritance
OpenAuthorizationData
Inherited Members
Extension Methods

Constructors

OpenAuthorizationData()

Initializes a new instance of the OpenAuthorizationData class.

public OpenAuthorizationData()

OpenAuthorizationData(NameValueCollection)

Initializes a new instance of the OpenAuthorizationData class.

public OpenAuthorizationData(NameValueCollection data)

Parameters

data NameValueCollection

The data.

OpenAuthorizationData(string)

Initializes a new instance of the OpenAuthorizationData class.

public OpenAuthorizationData(string nonce)

Parameters

nonce string

The nonce.

OpenAuthorizationData(string?, NameValueCollection?)

Initializes a new instance of the OpenAuthorizationData class.

public OpenAuthorizationData(string? nonce, NameValueCollection? data)

Parameters

nonce string

The nonce.

data NameValueCollection

The data.

Properties

ConsumerKey

Gets or sets the consumer key.

public string? ConsumerKey { get; set; }

Property Value

string

ConsumerSecret

Gets or sets the consumer secret.

public string? ConsumerSecret { get; set; }

Property Value

string

Nonce

Gets the nonce.

public string? Nonce { get; set; }

Property Value

string

SignatureMethod

Gets the signature method.

public string? SignatureMethod { get; set; }

Property Value

string

TimeStamp

Gets or sets the time stamp.

public string? TimeStamp { get; set; }

Property Value

string

Token

Gets or sets the token.

public string? Token { get; set; }

Property Value

string

TokenSecret

Gets or sets the token secret.

public string? TokenSecret { get; set; }

Property Value

string

Version

Gets or sets the version.

public string? Version { get; set; }

Property Value

string