Files
Aug2021-Cpp2IL-Dump/System/ComponentModel/ComponentResourceManager.cs
T
2026-04-10 22:50:51 +02:00

89 lines
4.0 KiB
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Resources;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides simple functionality for enumerating resources for a component or object. The <see cref="T:System.ComponentModel.ComponentResourceManager" /> class is a <see cref="T:System.Resources.ResourceManager" />.</summary>
// Token: 0x02000100 RID: 256
[Token(Token = "0x2000100")]
public class ComponentResourceManager : ResourceManager
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComponentResourceManager" /> class with default values.</summary>
// Token: 0x0600063F RID: 1599 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600063F")]
[Address(RVA = "0x498E60", Offset = "0x497C60", VA = "0x180498E60")]
public ComponentResourceManager()
{
}
/// <summary>Creates a <see cref="T:System.ComponentModel.ComponentResourceManager" /> that looks up resources in satellite assemblies based on information from the specified <see cref="T:System.Type" />.</summary>
/// <param name="t">A <see cref="T:System.Type" /> from which the <see cref="T:System.ComponentModel.ComponentResourceManager" /> derives all information for finding resource files.</param>
// 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;
}
}
/// <summary>Applies a resource's value to the corresponding property of the object.</summary>
/// <param name="value">An <see cref="T:System.Object" /> that contains the property value to be applied.</param>
/// <param name="objectName">A <see cref="T:System.String" /> that contains the name of the object to look up in the resources.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> or <paramref name="objectName" /> is <see langword="null" />.</exception>
// 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)
{
}
/// <summary>Applies a resource's value to the corresponding property of the object.</summary>
/// <param name="value">An <see cref="T:System.Object" /> that contains the property value to be applied.</param>
/// <param name="objectName">A <see cref="T:System.String" /> that contains the name of the object to look up in the resources.</param>
/// <param name="culture">The culture for which to apply resources.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="value" /> or <paramref name="objectName" /> is <see langword="null" />.</exception>
// 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<string, object> 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;
}
}