forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElementalValueProvider.cs
More file actions
36 lines (29 loc) · 1.16 KB
/
Copy pathElementalValueProvider.cs
File metadata and controls
36 lines (29 loc) · 1.16 KB
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
32
33
34
35
36
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Globalization;
namespace System.Web.Http.ValueProviders.Providers
{
// Represents a value provider that contains a single value.
internal sealed class ElementalValueProvider : IValueProvider
{
public ElementalValueProvider(string name, object rawValue, CultureInfo culture)
{
Name = name;
RawValue = rawValue;
Culture = culture;
}
public CultureInfo Culture { get; private set; }
public string Name { get; private set; }
public object RawValue { get; private set; }
public bool ContainsPrefix(string prefix)
{
return PrefixContainer.IsPrefixMatch(prefix, Name);
}
public ValueProviderResult GetValue(string key)
{
return String.Equals(key, Name, StringComparison.OrdinalIgnoreCase)
? new ValueProviderResult(RawValue, Convert.ToString(RawValue, Culture), Culture)
: null;
}
}
}