blob: 3718a68c97bd77bc658919ca260a07e9ee94c39b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
namespace DotNetOpenAuth.OpenId.Messages {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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 internal abstract Association CreateAssociationAtRelyingParty(AssociateRequest request);
}
}
|