blob: 5c4f3dce43bf9dbe42ca1f33b77d91f3cf6b6087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Collections.Generic;
using System.Text;
namespace DotNetOpenId.RelyingParty {
/// <summary>
/// An interface to expose useful properties and functionality for handling
/// authentication responses that are returned from Immediate authentication
/// requests that require a subsequent request to be made in non-immediate mode.
/// </summary>
public interface ISetupRequiredAuthenticationResponse {
/// <summary>
/// The <see cref="Identifier"/> to pass to <see cref="OpenIdRelyingParty.CreateRequest(Identifier)"/>
/// in a subsequent authentication attempt.
/// </summary>
/// <remarks>
/// When directed identity is used, this will be the Provider Identifier given by the user.
/// Otherwise it will be the Claimed Identifier derived from the user-supplied identifier.
/// </remarks>
Identifier ClaimedOrProviderIdentifier { get; }
}
}
|