diff options
Diffstat (limited to 'src/DotNetOpenAuth/OAuthWrap/Protocol.cs')
-rw-r--r-- | src/DotNetOpenAuth/OAuthWrap/Protocol.cs | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/src/DotNetOpenAuth/OAuthWrap/Protocol.cs b/src/DotNetOpenAuth/OAuthWrap/Protocol.cs index 8882aea..9ee7091 100644 --- a/src/DotNetOpenAuth/OAuthWrap/Protocol.cs +++ b/src/DotNetOpenAuth/OAuthWrap/Protocol.cs @@ -54,9 +54,9 @@ namespace DotNetOpenAuth.OAuthWrap { internal const string client_id = "client_id"; /// <summary> - /// The "wrap_scope" string. + /// The "scope" string. /// </summary> - internal const string wrap_scope = "wrap_scope"; + internal const string scope = "scope"; /// <summary> /// The "immediate" string. @@ -74,6 +74,21 @@ namespace DotNetOpenAuth.OAuthWrap { internal const string code = "code"; /// <summary> + /// The "user_code" string. + /// </summary> + internal const string user_code = "user_code"; + + /// <summary> + /// The "user_uri" string. + /// </summary> + internal const string user_uri = "user_uri"; + + /// <summary> + /// The "interval" string. + /// </summary> + internal const string interval = "interval"; + + /// <summary> /// The "wrap_verification_url" string. /// </summary> internal const string wrap_verification_url = "wrap_verification_url"; @@ -124,14 +139,14 @@ namespace DotNetOpenAuth.OAuthWrap { internal const string wrap_name = "wrap_name"; /// <summary> - /// The "wrap_assertion_format" string. + /// The "format" string. /// </summary> - internal const string wrap_assertion_format = "wrap_assertion_format"; + internal const string format = "format"; /// <summary> - /// The "wrap_assertion" string. + /// The "assertion" string. /// </summary> - internal const string wrap_assertion = "wrap_assertion"; + internal const string assertion = "assertion"; /// <summary> /// The "wrap_SAML" string. |