The OAuth2 token, which is usually used for Application-only authentication.
Inheritance: TokensBase
コード例 #1
0
ファイル: OAuth2Token.cs プロジェクト: CoreTweet/CoreTweet
 /// <summary>
 /// Initializes a new instance of the <see cref="OAuth2Token"/> class with a specified token.
 /// </summary>
 /// <param name="e">The token.</param>
 public OAuth2Token(OAuth2Token e)
     : this()
 {
     this.ConsumerKey = e.ConsumerKey;
     this.ConsumerSecret = e.ConsumerSecret;
     this.BearerToken = e.BearerToken;
 }