//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace WebFormsRelyingParty.Code { using System; using System.Collections.Generic; using System.Linq; using System.Web; public class Policies { /// /// The set of OP Endpoints that we trust pre-verify email addresses before sending them /// with positive assertions. /// 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"), }; } }