blob: 103bac405c30c6d2554017363124d65c2c4522a4 (
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="WellKnownIssuers.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.InfoCard {
/// <summary>
/// Common InfoCard issuers.
/// </summary>
public sealed class WellKnownIssuers {
/// <summary>
/// The Issuer URI to use for self-issued cards.
/// </summary>
public const string SelfIssued = "http://schemas.xmlsoap.org/ws/2005/05/identity/issuer/self";
/// <summary>
/// Prevents a default instance of the <see cref="WellKnownIssuers"/> class from being created.
/// </summary>
private WellKnownIssuers() {
}
}
}
|