blob: 505165c35f8eeb893e8317a3fb5b7138bf417c59 (
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
|
//-----------------------------------------------------------------------
// <copyright file="OpenIdSelectorOptions.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Mvc {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class OpenIdAjaxOptions {
public OpenIdAjaxOptions() {
this.AssertionHiddenFieldId = "openid_openidAuthData";
this.ReturnUrlHiddenFieldId = "ReturnUrl";
}
public string AssertionHiddenFieldId { get; set; }
public string ReturnUrlHiddenFieldId { get; set; }
public int FormIndex { get; set; }
public bool ShowDiagnosticTrace { get; set; }
public bool ShowDiagnosticIFrame { get; set; }
}
}
|