20 lines
774 B
C#
20 lines
774 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Resources
|
|
{
|
|
/// <summary>Specifies the assembly for the <see cref="T:System.Resources.ResourceManager" /> class to use to retrieve neutral resources by using the Packaging and Deploying Resources.</summary>
|
|
// Token: 0x02000282 RID: 642
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum UltimateResourceFallbackLocation
|
|
{
|
|
/// <summary>Fallback resources are located in the main assembly.</summary>
|
|
// Token: 0x04000B89 RID: 2953
|
|
MainAssembly,
|
|
/// <summary>Fallback resources are located in a satellite assembly in the location specified by the <see cref="P:System.Resources.NeutralResourcesLanguageAttribute.Location" /> property.</summary>
|
|
// Token: 0x04000B8A RID: 2954
|
|
Satellite
|
|
}
|
|
}
|