blob: 676b3f21eaba75d72221f2c7f64e5913046d747e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//-----------------------------------------------------------------------
// <copyright file="Policies.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace WebFormsRelyingParty.Code {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class Policies {
/// <summary>
/// The set of OP Endpoints that we trust pre-verify email addresses before sending them
/// with positive assertions.
/// </summary>
public static readonly Uri[] ProviderEndpointsProvidingTrustedEmails = new Uri[] {
new Uri("https://www.google.com/accounts/o8/ud"),
new Uri("https://open.login.yahooapis.com/openid/op/auth"),
};
}
}
|