blob: 0f133067f9ff37e6725b22b546e277c46d85febc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//-----------------------------------------------------------------------
// <copyright file="Constants.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Extensions.AttributeExchange {
/// <summary>
/// Attribute Exchange constants
/// </summary>
internal static class Constants {
/// <summary>
/// The TypeURI by which the AX extension is recognized in
/// OpenID messages and in XRDS documents.
/// </summary>
internal const string TypeUri = "http://openid.net/srv/ax/1.0";
}
}
|