This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,617 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using System.Threading;
using Cpp2IlInjected;
namespace System.Resources
{
/// <summary>Represents a resource manager that provides convenient access to culture-specific resources at run time.</summary>
// Token: 0x020001FE RID: 510
[Token(Token = "0x20001FE")]
[ComVisible(true)]
[Serializable]
public class ResourceManager
{
// Token: 0x0600137D RID: 4989 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600137D")]
[Address(RVA = "0x2CF5DF0", Offset = "0x2CF4DF0", VA = "0x182CF5DF0")]
private void Init()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.ResourceManager" /> class with default values.</summary>
// Token: 0x0600137E RID: 4990 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600137E")]
[Address(RVA = "0x2CF67A0", Offset = "0x2CF57A0", VA = "0x182CF67A0")]
protected ResourceManager()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.ResourceManager" /> class that looks up resources contained in files with the specified root name in the given assembly.</summary>
/// <param name="baseName">The root name of the resource file without its extension but including any fully qualified namespace name. For example, the root name for the resource file named MyApplication.MyResource.en-US.resources is MyApplication.MyResource.</param>
/// <param name="assembly">The main assembly for the resources.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="baseName" /> or <paramref name="assembly" /> parameter is <see langword="null" />.</exception>
// Token: 0x0600137F RID: 4991 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600137F")]
[Address(RVA = "0x2CF6AB0", Offset = "0x2CF5AB0", VA = "0x182CF6AB0")]
public ResourceManager(string baseName, Assembly assembly)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.ResourceManager" /> class that looks up resources in satellite assemblies based on information from the specified type object.</summary>
/// <param name="resourceSource">A type from which the resource manager derives all information for finding .resources files.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="resourceSource" /> parameter is <see langword="null" />.</exception>
// Token: 0x06001380 RID: 4992 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001380")]
[Address(RVA = "0x2CF6850", Offset = "0x2CF5850", VA = "0x182CF6850")]
public ResourceManager(Type resourceSource)
{
}
// Token: 0x06001381 RID: 4993 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001381")]
[Address(RVA = "0x2CF65A0", Offset = "0x2CF55A0", VA = "0x182CF65A0")]
[OnDeserializing]
private void OnDeserializing(StreamingContext ctx)
{
}
// Token: 0x06001382 RID: 4994 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001382")]
[Address(RVA = "0x2CF6430", Offset = "0x2CF5430", VA = "0x182CF6430")]
[OnDeserialized]
private void OnDeserialized(StreamingContext ctx)
{
}
// Token: 0x06001383 RID: 4995 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001383")]
[Address(RVA = "0x2CF65C0", Offset = "0x2CF55C0", VA = "0x182CF65C0")]
[OnSerializing]
private void OnSerializing(StreamingContext ctx)
{
}
// Token: 0x06001384 RID: 4996 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001384")]
[Address(RVA = "0x2CF48D0", Offset = "0x2CF38D0", VA = "0x182CF48D0")]
private void CommonAssemblyInit()
{
}
/// <summary>Gets the root name of the resource files that the <see cref="T:System.Resources.ResourceManager" /> searches for resources.</summary>
/// <returns>The root name of the resource files that the <see cref="T:System.Resources.ResourceManager" /> searches for resources.</returns>
// Token: 0x170001EB RID: 491
// (get) Token: 0x06001385 RID: 4997 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001EB")]
public virtual string BaseName
{
[Token(Token = "0x6001385")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets or sets a value that indicates whether the resource manager allows case-insensitive resource lookups in the <see cref="M:System.Resources.ResourceManager.GetString(System.String)" /> and <see cref="M:System.Resources.ResourceManager.GetObject(System.String)" /> methods.</summary>
/// <returns>
/// <see langword="true" /> to ignore case during resource lookup; otherwise, <see langword="false" />.</returns>
// Token: 0x170001EC RID: 492
// (get) Token: 0x06001386 RID: 4998 RVA: 0x0000EFE8 File Offset: 0x0000D1E8
[Token(Token = "0x170001EC")]
public virtual bool IgnoreCase
{
[Token(Token = "0x6001386")]
[Address(RVA = "0x51F220", Offset = "0x51E220", VA = "0x18051F220", Slot = "5")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the location from which to retrieve default fallback resources.</summary>
/// <returns>One of the enumeration values that specifies where the resource manager can look for fallback resources.</returns>
// Token: 0x170001ED RID: 493
// (get) Token: 0x06001387 RID: 4999 RVA: 0x0000F000 File Offset: 0x0000D200
[Token(Token = "0x170001ED")]
protected UltimateResourceFallbackLocation FallbackLocation
{
[Token(Token = "0x6001387")]
[Address(RVA = "0x56DCF0", Offset = "0x56CCF0", VA = "0x18056DCF0")]
get
{
return UltimateResourceFallbackLocation.MainAssembly;
}
}
/// <summary>Generates the name of the resource file for the given <see cref="T:System.Globalization.CultureInfo" /> object.</summary>
/// <param name="culture">The culture object for which a resource file name is constructed.</param>
/// <returns>The name that can be used for a resource file for the given <see cref="T:System.Globalization.CultureInfo" /> object.</returns>
// Token: 0x06001388 RID: 5000 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6001388")]
[Address(RVA = "0x2CF5030", Offset = "0x2CF4030", VA = "0x182CF5030", Slot = "6")]
protected virtual string GetResourceFileName(CultureInfo culture)
{
return null;
}
// Token: 0x06001389 RID: 5001 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6001389")]
[Address(RVA = "0x2CF4C30", Offset = "0x2CF3C30", VA = "0x182CF4C30")]
internal ResourceSet GetFirstResourceSet(CultureInfo culture)
{
return null;
}
/// <summary>Retrieves the resource set for a particular culture.</summary>
/// <param name="culture">The culture whose resources are to be retrieved.</param>
/// <param name="createIfNotExists">
/// <see langword="true" /> to load the resource set, if it has not been loaded yet; otherwise, <see langword="false" />.</param>
/// <param name="tryParents">
/// <see langword="true" /> to use resource fallback to load an appropriate resource if the resource set cannot be found; <see langword="false" /> to bypass the resource fallback process.</param>
/// <returns>The resource set for the specified culture.</returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="culture" /> parameter is <see langword="null" />.</exception>
/// <exception cref="T:System.Resources.MissingManifestResourceException">
/// <paramref name="tryParents" /> is <see langword="true" />, no usable set of resources has been found, and there are no default culture resources.</exception>
// Token: 0x0600138A RID: 5002 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600138A")]
[Address(RVA = "0x2CF5160", Offset = "0x2CF4160", VA = "0x182CF5160", Slot = "7")]
public virtual ResourceSet GetResourceSet(CultureInfo culture, bool createIfNotExists, bool tryParents)
{
return null;
}
/// <summary>Provides the implementation for finding a resource set.</summary>
/// <param name="culture">The culture object to look for.</param>
/// <param name="createIfNotExists">
/// <see langword="true" /> to load the resource set, if it has not been loaded yet; otherwise, <see langword="false" />.</param>
/// <param name="tryParents">
/// <see langword="true" /> to check parent <see cref="T:System.Globalization.CultureInfo" /> objects if the resource set cannot be loaded; otherwise, <see langword="false" />.</param>
/// <returns>The specified resource set.</returns>
/// <exception cref="T:System.Resources.MissingManifestResourceException">The main assembly does not contain a .resources file, which is required to look up a resource.</exception>
/// <exception cref="T:System.ExecutionEngineException">There was an internal error in the runtime.</exception>
/// <exception cref="T:System.Resources.MissingSatelliteAssemblyException">The satellite assembly associated with <paramref name="culture" /> could not be located.</exception>
// Token: 0x0600138B RID: 5003 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600138B")]
[Address(RVA = "0x2CF5E80", Offset = "0x2CF4E80", VA = "0x182CF5E80", Slot = "8")]
protected virtual ResourceSet InternalGetResourceSet(CultureInfo culture, bool createIfNotExists, bool tryParents)
{
return null;
}
// Token: 0x0600138C RID: 5004 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600138C")]
[Address(RVA = "0x2CF5EB0", Offset = "0x2CF4EB0", VA = "0x182CF5EB0")]
private ResourceSet InternalGetResourceSet(CultureInfo requestedCulture, bool createIfNotExists, bool tryParents, ref StackCrawlMark stackMark)
{
return null;
}
// Token: 0x0600138D RID: 5005 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600138D")]
[Address(RVA = "0x2CF4780", Offset = "0x2CF3780", VA = "0x182CF4780")]
private static void AddResourceSet(Dictionary<string, ResourceSet> localResourceSets, string cultureName, ref ResourceSet rs)
{
}
/// <summary>Returns the version specified by the <see cref="T:System.Resources.SatelliteContractVersionAttribute" /> attribute in the given assembly.</summary>
/// <param name="a">The assembly to check for the <see cref="T:System.Resources.SatelliteContractVersionAttribute" /> attribute.</param>
/// <returns>The satellite contract version of the given assembly, or <see langword="null" /> if no version was found.</returns>
/// <exception cref="T:System.ArgumentException">The <see cref="T:System.Version" /> found in the assembly <paramref name="a" /> is invalid.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="a" /> is <see langword="null" />.</exception>
// Token: 0x0600138E RID: 5006 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600138E")]
[Address(RVA = "0x2CF54B0", Offset = "0x2CF44B0", VA = "0x182CF54B0")]
protected static Version GetSatelliteContractVersion(Assembly a)
{
return null;
}
/// <summary>Returns culture-specific information for the main assembly's default resources by retrieving the value of the <see cref="T:System.Resources.NeutralResourcesLanguageAttribute" /> attribute on a specified assembly.</summary>
/// <param name="a">The assembly for which to return culture-specific information.</param>
/// <returns>The culture from the <see cref="T:System.Resources.NeutralResourcesLanguageAttribute" /> attribute, if found; otherwise, the invariant culture.</returns>
// Token: 0x0600138F RID: 5007 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600138F")]
[Address(RVA = "0x2CF5010", Offset = "0x2CF4010", VA = "0x182CF5010")]
protected static CultureInfo GetNeutralResourcesLanguage(Assembly a)
{
return null;
}
// Token: 0x06001390 RID: 5008 RVA: 0x0000F018 File Offset: 0x0000D218
[Token(Token = "0x6001390")]
[Address(RVA = "0x2CF49E0", Offset = "0x2CF39E0", VA = "0x182CF49E0")]
internal static bool CompareNames(string asmTypeName1, string typeName2, AssemblyName asmName2)
{
return default(bool);
}
// Token: 0x06001391 RID: 5009 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001391")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
private void SetAppXConfiguration()
{
}
/// <summary>Returns the value of the specified string resource.</summary>
/// <param name="name">The name of the resource to retrieve.</param>
/// <returns>The value of the resource localized for the caller's current UI culture, or <see langword="null" /> if <paramref name="name" /> cannot be found in a resource set.</returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">The value of the specified resource is not a string.</exception>
/// <exception cref="T:System.Resources.MissingManifestResourceException">No usable set of resources has been found, and there are no resources for the default culture. For information about how to handle this exception, see the "Handling MissingManifestResourceException and MissingSatelliteAssemblyException Exceptions" section in the <see cref="T:System.Resources.ResourceManager" /> class topic.</exception>
/// <exception cref="T:System.Resources.MissingSatelliteAssemblyException">The default culture's resources reside in a satellite assembly that could not be found. For information about how to handle this exception, see the "Handling MissingManifestResourceException and MissingSatelliteAssemblyException Exceptions" section in the <see cref="T:System.Resources.ResourceManager" /> class topic.</exception>
// Token: 0x06001392 RID: 5010 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6001392")]
[Address(RVA = "0xB96630", Offset = "0xB95630", VA = "0x180B96630", Slot = "9")]
public virtual string GetString(string name)
{
return null;
}
/// <summary>Returns the value of the string resource localized for the specified culture.</summary>
/// <param name="name">The name of the resource to retrieve.</param>
/// <param name="culture">An object that represents the culture for which the resource is localized.</param>
/// <returns>The value of the resource localized for the specified culture, or <see langword="null" /> if <paramref name="name" /> cannot be found in a resource set.</returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is <see langword="null" />.</exception>
/// <exception cref="T:System.InvalidOperationException">The value of the specified resource is not a string.</exception>
/// <exception cref="T:System.Resources.MissingManifestResourceException">No usable set of resources has been found, and there are no resources for a default culture. For information about how to handle this exception, see the "Handling MissingManifestResourceException and MissingSatelliteAssemblyException Exceptions" section in the <see cref="T:System.Resources.ResourceManager" /> class topic.</exception>
/// <exception cref="T:System.Resources.MissingSatelliteAssemblyException">The default culture's resources reside in a satellite assembly that could not be found. For information about how to handle this exception, see the "Handling MissingManifestResourceException and MissingSatelliteAssemblyException Exceptions" section in the <see cref="T:System.Resources.ResourceManager" /> class topic.</exception>
// Token: 0x06001393 RID: 5011 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6001393")]
[Address(RVA = "0x2CF59F0", Offset = "0x2CF49F0", VA = "0x182CF59F0", Slot = "10")]
public virtual string GetString(string name, CultureInfo culture)
{
return null;
}
/// <summary>Specifies the root name of the resource files that the <see cref="T:System.Resources.ResourceManager" /> searches for resources.</summary>
// Token: 0x040009C0 RID: 2496
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x40009C0")]
protected string BaseNameField;
/// <summary>Contains a <see cref="T:System.Collections.Hashtable" /> that returns a mapping from cultures to <see cref="T:System.Resources.ResourceSet" /> objects.</summary>
// Token: 0x040009C1 RID: 2497
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x40009C1")]
[Obsolete]
protected Hashtable ResourceSets;
// Token: 0x040009C2 RID: 2498
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x40009C2")]
[NonSerialized]
private Dictionary<string, ResourceSet> _resourceSets;
// Token: 0x040009C3 RID: 2499
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x40009C3")]
private string moduleDir;
/// <summary>Specifies the main assembly that contains the resources.</summary>
// Token: 0x040009C4 RID: 2500
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x40009C4")]
protected Assembly MainAssembly;
// Token: 0x040009C5 RID: 2501
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
[Token(Token = "0x40009C5")]
private Type _locationInfo;
// Token: 0x040009C6 RID: 2502
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
[Token(Token = "0x40009C6")]
private Type _userResourceSet;
// Token: 0x040009C7 RID: 2503
[global::Cpp2IlInjected.FieldOffset(Offset = "0x48")]
[Token(Token = "0x40009C7")]
private CultureInfo _neutralResourcesCulture;
// Token: 0x040009C8 RID: 2504
[global::Cpp2IlInjected.FieldOffset(Offset = "0x50")]
[Token(Token = "0x40009C8")]
[NonSerialized]
private ResourceManager.CultureNameResourceSetPair _lastUsedResourceCache;
// Token: 0x040009C9 RID: 2505
[global::Cpp2IlInjected.FieldOffset(Offset = "0x58")]
[Token(Token = "0x40009C9")]
private bool _ignoreCase;
// Token: 0x040009CA RID: 2506
[global::Cpp2IlInjected.FieldOffset(Offset = "0x59")]
[Token(Token = "0x40009CA")]
private bool UseManifest;
// Token: 0x040009CB RID: 2507
[global::Cpp2IlInjected.FieldOffset(Offset = "0x5A")]
[Token(Token = "0x40009CB")]
[OptionalField]
private bool UseSatelliteAssem;
// Token: 0x040009CC RID: 2508
[global::Cpp2IlInjected.FieldOffset(Offset = "0x5C")]
[Token(Token = "0x40009CC")]
[OptionalField]
private UltimateResourceFallbackLocation _fallbackLoc;
// Token: 0x040009CD RID: 2509
[global::Cpp2IlInjected.FieldOffset(Offset = "0x60")]
[Token(Token = "0x40009CD")]
[OptionalField]
private Version _satelliteContractVersion;
// Token: 0x040009CE RID: 2510
[global::Cpp2IlInjected.FieldOffset(Offset = "0x68")]
[Token(Token = "0x40009CE")]
[OptionalField]
private bool _lookedForSatelliteContractVersion;
// Token: 0x040009CF RID: 2511
[global::Cpp2IlInjected.FieldOffset(Offset = "0x70")]
[Token(Token = "0x40009CF")]
[OptionalField]
private Assembly _callingAssembly;
// Token: 0x040009D0 RID: 2512
[global::Cpp2IlInjected.FieldOffset(Offset = "0x78")]
[Token(Token = "0x40009D0")]
[OptionalField]
private RuntimeAssembly m_callingAssembly;
// Token: 0x040009D1 RID: 2513
[global::Cpp2IlInjected.FieldOffset(Offset = "0x80")]
[Token(Token = "0x40009D1")]
[NonSerialized]
private IResourceGroveler resourceGroveler;
/// <summary>Holds the number used to identify resource files.</summary>
// Token: 0x040009D2 RID: 2514
[Token(Token = "0x40009D2")]
public static readonly int MagicNumber;
/// <summary>Specifies the version of resource file headers that the current implementation of <see cref="T:System.Resources.ResourceManager" /> can interpret and produce.</summary>
// Token: 0x040009D3 RID: 2515
[Token(Token = "0x40009D3")]
public static readonly int HeaderVersionNumber;
// Token: 0x040009D4 RID: 2516
[Token(Token = "0x40009D4")]
private static readonly Type _minResourceSet;
// Token: 0x040009D5 RID: 2517
[Token(Token = "0x40009D5")]
internal static readonly string ResReaderTypeName;
// Token: 0x040009D6 RID: 2518
[Token(Token = "0x40009D6")]
internal static readonly string ResSetTypeName;
// Token: 0x040009D7 RID: 2519
[Token(Token = "0x40009D7")]
internal static readonly string MscorlibName;
// Token: 0x040009D8 RID: 2520
[Token(Token = "0x40009D8")]
internal static readonly int DEBUG;
// Token: 0x020001FF RID: 511
[Token(Token = "0x20001FF")]
internal class CultureNameResourceSetPair
{
// Token: 0x06001395 RID: 5013 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001395")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
public CultureNameResourceSetPair()
{
}
// Token: 0x040009D9 RID: 2521
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x40009D9")]
public string lastCultureName;
// Token: 0x040009DA RID: 2522
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x40009DA")]
public ResourceSet lastResourceSet;
}
// Token: 0x02000200 RID: 512
[Token(Token = "0x2000200")]
internal class ResourceManagerMediator
{
// Token: 0x06001396 RID: 5014 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001396")]
[Address(RVA = "0x2CF4590", Offset = "0x2CF3590", VA = "0x182CF4590")]
internal ResourceManagerMediator(ResourceManager rm)
{
}
// Token: 0x170001EE RID: 494
// (get) Token: 0x06001397 RID: 5015 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001EE")]
internal string ModuleDir
{
[Token(Token = "0x6001397")]
[Address(RVA = "0x7788D0", Offset = "0x7778D0", VA = "0x1807788D0")]
get
{
return null;
}
}
// Token: 0x170001EF RID: 495
// (get) Token: 0x06001398 RID: 5016 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001EF")]
internal Type LocationInfo
{
[Token(Token = "0x6001398")]
[Address(RVA = "0x5EF710", Offset = "0x5EE710", VA = "0x1805EF710")]
get
{
return null;
}
}
// Token: 0x170001F0 RID: 496
// (get) Token: 0x06001399 RID: 5017 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001F0")]
internal Type UserResourceSet
{
[Token(Token = "0x6001399")]
[Address(RVA = "0x2CF4720", Offset = "0x2CF3720", VA = "0x182CF4720")]
get
{
return null;
}
}
// Token: 0x170001F1 RID: 497
// (get) Token: 0x0600139A RID: 5018 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001F1")]
internal string BaseNameField
{
[Token(Token = "0x600139A")]
[Address(RVA = "0x4831B0", Offset = "0x4821B0", VA = "0x1804831B0")]
get
{
return null;
}
}
// Token: 0x170001F2 RID: 498
// (get) Token: 0x0600139B RID: 5019 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001F2")]
internal CultureInfo NeutralResourcesCulture
{
[Token(Token = "0x600139B")]
[Address(RVA = "0x1918F20", Offset = "0x1917F20", VA = "0x181918F20")]
get
{
return null;
}
}
// Token: 0x0600139C RID: 5020 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600139C")]
[Address(RVA = "0x2352460", Offset = "0x2351460", VA = "0x182352460")]
internal string GetResourceFileName(CultureInfo culture)
{
return null;
}
// Token: 0x170001F3 RID: 499
// (get) Token: 0x0600139D RID: 5021 RVA: 0x0000F030 File Offset: 0x0000D230
// (set) Token: 0x0600139E RID: 5022 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001F3")]
internal bool LookedForSatelliteContractVersion
{
[Token(Token = "0x600139D")]
[Address(RVA = "0x2CF4650", Offset = "0x2CF3650", VA = "0x182CF4650")]
get
{
return default(bool);
}
[Token(Token = "0x600139E")]
[Address(RVA = "0x2CF4740", Offset = "0x2CF3740", VA = "0x182CF4740")]
set
{
}
}
// Token: 0x170001F4 RID: 500
// (get) Token: 0x0600139F RID: 5023 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x060013A0 RID: 5024 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001F4")]
internal Version SatelliteContractVersion
{
[Token(Token = "0x600139F")]
[Address(RVA = "0x2CF4700", Offset = "0x2CF3700", VA = "0x182CF4700")]
get
{
return null;
}
[Token(Token = "0x60013A0")]
[Address(RVA = "0x2CF4760", Offset = "0x2CF3760", VA = "0x182CF4760")]
set
{
}
}
// Token: 0x060013A1 RID: 5025 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60013A1")]
[Address(RVA = "0x2CF4530", Offset = "0x2CF3530", VA = "0x182CF4530")]
internal Version ObtainSatelliteContractVersion(Assembly a)
{
return null;
}
// Token: 0x170001F5 RID: 501
// (get) Token: 0x060013A2 RID: 5026 RVA: 0x0000F048 File Offset: 0x0000D248
[Token(Token = "0x170001F5")]
internal UltimateResourceFallbackLocation FallbackLoc
{
[Token(Token = "0x60013A2")]
[Address(RVA = "0x2CF4630", Offset = "0x2CF3630", VA = "0x182CF4630")]
get
{
return UltimateResourceFallbackLocation.MainAssembly;
}
}
// Token: 0x170001F6 RID: 502
// (get) Token: 0x060013A3 RID: 5027 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001F6")]
internal RuntimeAssembly CallingAssembly
{
[Token(Token = "0x60013A3")]
[Address(RVA = "0x2CF4610", Offset = "0x2CF3610", VA = "0x182CF4610")]
get
{
return null;
}
}
// Token: 0x170001F7 RID: 503
// (get) Token: 0x060013A4 RID: 5028 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001F7")]
internal RuntimeAssembly MainAssembly
{
[Token(Token = "0x60013A4")]
[Address(RVA = "0x2CF4670", Offset = "0x2CF3670", VA = "0x182CF4670")]
get
{
return null;
}
}
// Token: 0x170001F8 RID: 504
// (get) Token: 0x060013A5 RID: 5029 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001F8")]
internal string BaseName
{
[Token(Token = "0x60013A5")]
[Address(RVA = "0x18F2A00", Offset = "0x18F1A00", VA = "0x1818F2A00")]
get
{
return null;
}
}
// Token: 0x040009DB RID: 2523
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x40009DB")]
private ResourceManager _rm;
}
}
}