//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.InfoCard {
///
/// Common InfoCard issuers.
///
public sealed class WellKnownIssuers {
///
/// The Issuer URI to use for self-issued cards.
///
public const string SelfIssued = "http://schemas.xmlsoap.org/ws/2005/05/identity/issuer/self";
///
/// Prevents a default instance of the class from being created.
///
private WellKnownIssuers() {
}
}
}