// 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.Framework.Localization
{
///
/// Represents a factory that creates instances.
///
public interface IStringLocalizerFactory
{
///
/// Creates an using the and
/// of the specified .
///
/// The .
/// The .
IStringLocalizer Create(Type resourceSource);
///
/// Creates an .
///
/// The base name of the resource to load strings from.
/// The location to load resources from.
/// The .
IStringLocalizer Create(string baseName, string location);
}
}