blob: d50af97488bccbfe8e44275369675a9418b5822d (
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
|
//-----------------------------------------------------------------------
// <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";
}
public string AssertionHiddenFieldId { get; set; }
public bool ShowDiagnosticTrace { get; set; }
public bool ShowDiagnosticIFrame { get; set; }
}
}
|