Files
27Aug2021-Cpp2IL-Dump/System/ComponentModel/ComponentResourceManager.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020000FC RID: 252
[Token(Token = "0x20000FC")]
public class ComponentResourceManager : ResourceManager
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComponentResourceManager" /> class with default values.</summary>
// Token: 0x06000629 RID: 1577 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000629")]
[Address(RVA = "0xB95B50", Offset = "0xB94B50", VA = "0x180B95B50")]
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: 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;
}
}
/// <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: 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)
{
}
/// <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: 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<string, object> 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;
}
}