public ServiceProviderDescription(OAuthEndPoint requestTokenEndPoint,
                                   OAuthEndPoint authorizationEndPoint, 
                                   OAuthEndPoint accessTokenEndPoint, 
                                   ProtocolVersion protocolVersion = ProtocolVersion.V10)
 {
     this.RequestTokenEndPoint   = requestTokenEndPoint;
     this.AuthorizationEndPoint  = authorizationEndPoint;
     this.AccessTokenEndPoint    = accessTokenEndPoint;
     this.ProtocolVersion        = protocolVersion;
 }
 public ServiceProviderDescription(OAuthEndPoint requestTokenEndPoint,
                                   OAuthEndPoint authorizationEndPoint,
                                   OAuthEndPoint accessTokenEndPoint,
                                   ProtocolVersion protocolVersion = ProtocolVersion.V10)
 {
     this.RequestTokenEndPoint  = requestTokenEndPoint;
     this.AuthorizationEndPoint = authorizationEndPoint;
     this.AccessTokenEndPoint   = accessTokenEndPoint;
     this.ProtocolVersion       = protocolVersion;
 }