diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-07-25 14:04:42 -0600 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-07-25 14:04:42 -0600 |
commit | 67689b08f76546b25d4c4bcc68e179d3b02890fc (patch) | |
tree | c2b22986d841fd998bed6aef275f486648337555 /src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Messages/AssociateSuccessfulResponseRelyingParty.cs | |
parent | 1328f88a36187d8aa5890a46e35af59c4df04d3f (diff) | |
download | DotNetOpenAuth-67689b08f76546b25d4c4bcc68e179d3b02890fc.zip DotNetOpenAuth-67689b08f76546b25d4c4bcc68e179d3b02890fc.tar.gz DotNetOpenAuth-67689b08f76546b25d4c4bcc68e179d3b02890fc.tar.bz2 |
More work toward divided OpenID projects.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Messages/AssociateSuccessfulResponseRelyingParty.cs')
-rw-r--r-- | src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Messages/AssociateSuccessfulResponseRelyingParty.cs | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Messages/AssociateSuccessfulResponseRelyingParty.cs b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Messages/AssociateSuccessfulResponseRelyingParty.cs index 7ee3988..3718a68 100644 --- a/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Messages/AssociateSuccessfulResponseRelyingParty.cs +++ b/src/DotNetOpenAuth.OpenId.RelyingParty/OpenId/Messages/AssociateSuccessfulResponseRelyingParty.cs @@ -1,15 +1,24 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; +namespace DotNetOpenAuth.OpenId.Messages { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; -namespace DotNetOpenAuth.OpenId.Messages { internal abstract class AssociateSuccessfulResponseRelyingParty : AssociateSuccessfulResponse { /// <summary> + /// Initializes a new instance of the <see cref="AssociateSuccessfulResponseRelyingParty"/> class. + /// </summary> + /// <param name="version">The version.</param> + /// <param name="request">The request.</param> + internal AssociateSuccessfulResponseRelyingParty(Version version, AssociateRequest request) + : base(version, request) { + } + + /// <summary> /// Called to create the Association based on a request previously given by the Relying Party. /// </summary> /// <param name="request">The prior request for an association.</param> /// <returns>The created association.</returns> - protected abstract Association CreateAssociationAtRelyingParty(AssociateRequest request); + protected internal abstract Association CreateAssociationAtRelyingParty(AssociateRequest request); } } |