C# Class Glipho.OAuth.Providers.Database.RequestToken

Inheritance: IssuedToken
Show file Open project: Glipho/oauth-providers Class Usage Examples

Public Methods

Method Description
Equals ( RequestToken token ) : bool

Determines whether the specified RequestToken is equal to the current RequestToken.

Equals ( object obj ) : bool

Determines whether the specified System.Object is equal to the current RequestToken.

GetHashCode ( ) : int

Serves as a hash function for a RequestToken.

RequestToken ( ) : System

Initialises a new instance of the RequestToken class.

RequestToken ( Uri callback, string consumerKey, string token, string tokenSecret, IEnumerable scope ) : System

Initialises a new instance of the RequestToken class.

ToString ( ) : string

Returns a System.String that represents the current RequestToken.

Method Details

Equals() public method

Determines whether the specified RequestToken is equal to the current RequestToken.
public Equals ( RequestToken token ) : bool
token RequestToken The to compare with the current .
return bool

Equals() public method

Determines whether the specified System.Object is equal to the current RequestToken.
public Equals ( object obj ) : bool
obj object The to compare with the current .
return bool

GetHashCode() public method

Serves as a hash function for a RequestToken.
public GetHashCode ( ) : int
return int

RequestToken() public method

Initialises a new instance of the RequestToken class.
public RequestToken ( ) : System
return System

RequestToken() public method

Initialises a new instance of the RequestToken class.
public RequestToken ( Uri callback, string consumerKey, string token, string tokenSecret, IEnumerable scope ) : System
callback System.Uri The callback.
consumerKey string The consumer key.
token string The token.
tokenSecret string The token secret.
scope IEnumerable The scope.
return System

ToString() public method

Returns a System.String that represents the current RequestToken.
public ToString ( ) : string
return string