blob: b9fa81b1234236da6f77516f30ec733d9038cabe (
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
25
26
|
namespace DotNetOpenAuth {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOpenAuth.OpenId.Messages;
using System.Diagnostics.Contracts;
using DotNetOpenAuth.OpenId;
[ContractClassFor(typeof(AssociateSuccessfulResponseRelyingParty))]
internal abstract class AssociateSuccessfulResponseRelyingPartyContract : AssociateSuccessfulResponseRelyingParty {
/// <summary>
/// Prevents a default instance of the <see cref="AssociateSuccessfulResponseRelyingPartyContract"/> class from being created.
/// </summary>
/// <param name="version">The version.</param>
/// <param name="request">The request.</param>
private AssociateSuccessfulResponseRelyingPartyContract(Version version, AssociateRequest request)
: base(version, request) {
}
protected internal override Association CreateAssociationAtRelyingParty(AssociateRequest request) {
Contract.Requires<ArgumentNullException>(request != null);
throw new NotImplementedException();
}
}
}
|