e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
namespace System.Web.ModelBinding {
|
|
using System;
|
|
using System.Globalization;
|
|
|
|
// 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(Name, prefix);
|
|
}
|
|
|
|
public ValueProviderResult GetValue(string key) {
|
|
return (String.Equals(key, Name, StringComparison.OrdinalIgnoreCase))
|
|
? new ValueProviderResult(RawValue, Convert.ToString(RawValue, Culture), Culture)
|
|
: null;
|
|
}
|
|
|
|
}
|
|
}
|