// 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; namespace Microsoft.AspNet.Mvc.Localization { /// /// A factory that creates instances. /// public interface IHtmlLocalizerFactory { /// /// Creates an using the and /// of the specified . /// /// The . /// The . IHtmlLocalizer Create(Type resourceSource); /// /// Creates an . /// /// The base name of the resource to load strings from. /// The location to load resources from. /// The . IHtmlLocalizer Create(string baseName, string location); } }