Class OpenAuthorizationData
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
NameValueCollectionThe data.
OpenAuthorizationData(string)
Initializes a new instance of the OpenAuthorizationData class.
public OpenAuthorizationData(string nonce)
Parameters
nonce
stringThe nonce.
OpenAuthorizationData(string?, NameValueCollection?)
Initializes a new instance of the OpenAuthorizationData class.
public OpenAuthorizationData(string? nonce, NameValueCollection? data)
Parameters
nonce
stringThe nonce.
data
NameValueCollectionThe data.
Properties
ConsumerKey
Gets or sets the consumer key.
public string? ConsumerKey { get; set; }
Property Value
ConsumerSecret
Gets or sets the consumer secret.
public string? ConsumerSecret { get; set; }
Property Value
Nonce
Gets the nonce.
public string? Nonce { get; set; }
Property Value
SignatureMethod
Gets the signature method.
public string? SignatureMethod { get; set; }
Property Value
TimeStamp
Gets or sets the time stamp.
public string? TimeStamp { get; set; }
Property Value
Token
Gets or sets the token.
public string? Token { get; set; }
Property Value
TokenSecret
Gets or sets the token secret.
public string? TokenSecret { get; set; }
Property Value
Version
Gets or sets the version.
public string? Version { get; set; }