using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Resources; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides simple functionality for enumerating resources for a component or object. The class is a . // Token: 0x02000100 RID: 256 [Token(Token = "0x2000100")] public class ComponentResourceManager : ResourceManager { /// Initializes a new instance of the class with default values. // Token: 0x0600063F RID: 1599 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600063F")] [Address(RVA = "0x498E60", Offset = "0x497C60", VA = "0x180498E60")] public ComponentResourceManager() { } /// Creates a that looks up resources in satellite assemblies based on information from the specified . /// A from which the derives all information for finding resource files. // Token: 0x06000640 RID: 1600 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000640")] [Address(RVA = "0x498EC0", Offset = "0x497CC0", VA = "0x180498EC0")] public ComponentResourceManager(Type t) { } // Token: 0x1700011C RID: 284 // (get) Token: 0x06000641 RID: 1601 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700011C")] private CultureInfo NeutralResourcesCulture { [Token(Token = "0x6000641")] [Address(RVA = "0x498F30", Offset = "0x497D30", VA = "0x180498F30")] get { return null; } } /// Applies a resource's value to the corresponding property of the object. /// An that contains the property value to be applied. /// A that contains the name of the object to look up in the resources. /// /// or is . // Token: 0x06000642 RID: 1602 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000642")] [Address(RVA = "0x4989B0", Offset = "0x4977B0", VA = "0x1804989B0")] public void ApplyResources(object value, string objectName) { } /// Applies a resource's value to the corresponding property of the object. /// An that contains the property value to be applied. /// A that contains the name of the object to look up in the resources. /// The culture for which to apply resources. /// /// or is . // Token: 0x06000643 RID: 1603 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000643")] [Address(RVA = "0x4981A0", Offset = "0x496FA0", VA = "0x1804981A0", Slot = "10")] public virtual void ApplyResources(object value, string objectName, CultureInfo culture) { } // Token: 0x06000644 RID: 1604 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000644")] [Address(RVA = "0x4989E0", Offset = "0x4977E0", VA = "0x1804989E0")] private SortedList FillResources(CultureInfo culture, out ResourceSet resourceSet) { return null; } // Token: 0x0400048E RID: 1166 [FieldOffset(Offset = "0x88")] [Token(Token = "0x400048E")] private Hashtable _resourceSets; // Token: 0x0400048F RID: 1167 [FieldOffset(Offset = "0x90")] [Token(Token = "0x400048F")] private CultureInfo _neutralResourcesCulture; } }