diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-28 15:04:04 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-28 15:04:04 -0700 |
commit | ad79dec82e43910db29d1a259155f2cf3f86e731 (patch) | |
tree | 34fc5eab2d77fdd3e6c2aa48f2d056c5e6ba6ff5 /src/DotNetOAuth/ServiceProviderEndpoints.cs | |
parent | 92ec674bd52330d4847f75150cd34263336219b6 (diff) | |
download | DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.zip DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.tar.gz DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.tar.bz2 |
Appendix scenario test passing (again), this time with HMAC signing of HTTP requests.
Diffstat (limited to 'src/DotNetOAuth/ServiceProviderEndpoints.cs')
-rw-r--r-- | src/DotNetOAuth/ServiceProviderEndpoints.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DotNetOAuth/ServiceProviderEndpoints.cs b/src/DotNetOAuth/ServiceProviderEndpoints.cs index e635ad2..82bdf28 100644 --- a/src/DotNetOAuth/ServiceProviderEndpoints.cs +++ b/src/DotNetOAuth/ServiceProviderEndpoints.cs @@ -18,7 +18,7 @@ namespace DotNetOAuth { /// <summary>
/// The field used to store the value of the <see cref="RequestTokenEndpoint"/> property.
/// </summary>
- private ServiceProviderEndpoint requestTokenEndpoint;
+ private MessageReceivingEndpoint requestTokenEndpoint;
/// <summary>
/// Initializes a new instance of the <see cref="ServiceProviderEndpoints"/> class.
@@ -35,7 +35,7 @@ namespace DotNetOAuth { /// This is the URL that <see cref="Messages.RequestTokenMessage"/> messages are directed to.
/// </remarks>
/// <exception cref="ArgumentException">Thrown if this property is set to a URI with OAuth protocol parameters.</exception>
- public ServiceProviderEndpoint RequestTokenEndpoint {
+ public MessageReceivingEndpoint RequestTokenEndpoint {
get {
return this.requestTokenEndpoint;
}
@@ -57,7 +57,7 @@ namespace DotNetOAuth { /// This is the URL that <see cref="Messages.DirectUserToServiceProviderMessage"/> messages are
/// indirectly (via the user agent) sent to.
/// </remarks>
- public ServiceProviderEndpoint UserAuthorizationEndpoint { get; set; }
+ public MessageReceivingEndpoint UserAuthorizationEndpoint { get; set; }
/// <summary>
/// Gets or sets the URL used to exchange the User-authorized Request Token
@@ -66,6 +66,6 @@ namespace DotNetOAuth { /// <remarks>
/// This is the URL that <see cref="Messages.RequestAccessTokenMessage"/> messages are directed to.
/// </remarks>
- public ServiceProviderEndpoint AccessTokenEndpoint { get; set; }
+ public MessageReceivingEndpoint AccessTokenEndpoint { get; set; }
}
}
|