parent
a935b9544f
commit
e1974283f0
|
|
@ -8,7 +8,8 @@ using System.Diagnostics;
|
||||||
namespace Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.Internal
|
namespace Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.Internal
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This type is for internal uses only and is not meant to be consumed by any other library.
|
/// This API supports infrastructure and is not intended to be used
|
||||||
|
/// directly from your code. This API may change or be removed in future releases.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DebuggerDisplay("{Name,nq}")]
|
[DebuggerDisplay("{Name,nq}")]
|
||||||
public class Entry : IEquatable<Entry>
|
public class Entry : IEquatable<Entry>
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,10 @@ using System.Reflection;
|
||||||
|
|
||||||
namespace Microsoft.Extensions.Localization.Internal
|
namespace Microsoft.Extensions.Localization.Internal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// This API supports infrastructure and is not intended to be used
|
||||||
|
/// directly from your code. This API may change or be removed in future releases.
|
||||||
|
/// </summary>
|
||||||
public class AssemblyWrapper
|
public class AssemblyWrapper
|
||||||
{
|
{
|
||||||
public AssemblyWrapper(Assembly assembly)
|
public AssemblyWrapper(Assembly assembly)
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,10 @@ using System.Globalization;
|
||||||
|
|
||||||
namespace Microsoft.Extensions.Localization.Internal
|
namespace Microsoft.Extensions.Localization.Internal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// This API supports infrastructure and is not intended to be used
|
||||||
|
/// directly from your code. This API may change or be removed in future releases.
|
||||||
|
/// </summary>
|
||||||
public interface IResourceStringProvider
|
public interface IResourceStringProvider
|
||||||
{
|
{
|
||||||
IList<string> GetAllResourceStrings(CultureInfo culture, bool throwOnMissing);
|
IList<string> GetAllResourceStrings(CultureInfo culture, bool throwOnMissing);
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,10 @@ using System.Resources;
|
||||||
|
|
||||||
namespace Microsoft.Extensions.Localization.Internal
|
namespace Microsoft.Extensions.Localization.Internal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// This API supports infrastructure and is not intended to be used
|
||||||
|
/// directly from your code. This API may change or be removed in future releases.
|
||||||
|
/// </summary>
|
||||||
public class ResourceManagerStringProvider : IResourceStringProvider
|
public class ResourceManagerStringProvider : IResourceStringProvider
|
||||||
{
|
{
|
||||||
private readonly IResourceNamesCache _resourceNamesCache;
|
private readonly IResourceNamesCache _resourceNamesCache;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue