You've already forked linux-packaging-mono
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Globalization;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Microsoft.Web.Mvc
|
|
{
|
|
// 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 ValueProviderUtil.IsPrefixMatch(Name, prefix);
|
|
}
|
|
|
|
public ValueProviderResult GetValue(string key)
|
|
{
|
|
return (String.Equals(key, Name, StringComparison.OrdinalIgnoreCase))
|
|
? new ValueProviderResult(RawValue, Convert.ToString(RawValue, Culture), Culture)
|
|
: null;
|
|
}
|
|
}
|
|
}
|