/// <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; }