// 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.
namespace Microsoft.AspNet.Localization
{
///
/// Represents the feature that provides the current request's culture information.
///
public interface IRequestCultureFeature
{
///
/// The of the request.
///
RequestCulture RequestCulture { get; }
///
/// The that determined the request's culture information.
/// If the value is null then no strategy was used and the request's culture was set to the value of
/// .
///
IRequestCultureStrategy Strategy { get; }
}
}