blob: bec35619ddff0b4b16a1aca0f35ae949c7c0e74b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//-----------------------------------------------------------------------
// <copyright file="UriUtil.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth {
using System;
using System.Collections.Specialized;
using System.Linq;
using System.Web;
/// <summary>
/// Utility methods for working with URIs.
/// </summary>
internal static class UriUtil {
/// <summary>
/// Tests a URI for the presence of an OAuth payload.
/// </summary>
/// <param name="uri">The URI to test.</param>
/// <returns>True if the URI contains an OAuth message.</returns>
internal static bool QueryStringContainsOAuthParameters(Uri uri) {
if (uri == null) {
return false;
}
NameValueCollection nvc = HttpUtility.ParseQueryString(uri.Query);
return nvc.Keys.OfType<string>().Any(key => key.StartsWith(OAuth.Protocol.V10.ParameterPrefix, StringComparison.Ordinal));
}
}
}
|