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: 0x020000FC RID: 252 [Token(Token = "0x20000FC")] public class ComponentResourceManager : ResourceManager { /// Initializes a new instance of the class with default values. // Token: 0x06000629 RID: 1577 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000629")] [Address(RVA = "0xB95B50", Offset = "0xB94B50", VA = "0x180B95B50")] 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: 0x0600062A RID: 1578 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600062A")] [Address(RVA = "0xB95BB0", Offset = "0xB94BB0", VA = "0x180B95BB0")] public ComponentResourceManager(Type t) { } // Token: 0x17000118 RID: 280 // (get) Token: 0x0600062B RID: 1579 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000118")] private CultureInfo NeutralResourcesCulture { [Token(Token = "0x600062B")] [Address(RVA = "0xB95C20", Offset = "0xB94C20", VA = "0x180B95C20")] 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: 0x0600062C RID: 1580 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600062C")] [Address(RVA = "0x7D4340", Offset = "0x7D3340", VA = "0x1807D4340")] 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: 0x0600062D RID: 1581 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600062D")] [Address(RVA = "0xB94EC0", Offset = "0xB93EC0", VA = "0x180B94EC0", Slot = "11")] public virtual void ApplyResources(object value, string objectName, CultureInfo culture) { } // Token: 0x0600062E RID: 1582 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600062E")] [Address(RVA = "0xB956D0", Offset = "0xB946D0", VA = "0x180B956D0")] private SortedList FillResources(CultureInfo culture, out ResourceSet resourceSet) { return null; } // Token: 0x04000481 RID: 1153 [FieldOffset(Offset = "0x88")] [Token(Token = "0x4000481")] private Hashtable _resourceSets; // Token: 0x04000482 RID: 1154 [FieldOffset(Offset = "0x90")] [Token(Token = "0x4000482")] private CultureInfo _neutralResourcesCulture; } }