blob: ca8e8f0de15522ca27dd8accf11b731c4b9abf2e (
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
27
28
29
30
31
|
//-----------------------------------------------------------------------
// <copyright file="PopupBehavior.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.RelyingParty {
/// <summary>
/// Several ways that the relying party can direct the user to the Provider
/// to complete authentication.
/// </summary>
public enum PopupBehavior {
/// <summary>
/// A full browser window redirect will be used to send the
/// user to the Provider.
/// </summary>
Never,
/// <summary>
/// A popup window will be used to send the user to the Provider.
/// </summary>
Always,
/// <summary>
/// A popup window will be used to send the user to the Provider
/// if the Provider advertises support for the popup UI extension;
/// otherwise a standard redirect is used.
/// </summary>
IfProviderSupported,
}
}
|