Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Resources/SatelliteContractVersionAttribute.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

45 lines
1.7 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Resources
{
/// <summary>Instructs a <see cref="T:System.Resources.ResourceManager" /> object to ask for a particular version of a satellite assembly.</summary>
// Token: 0x02000207 RID: 519
[Token(Token = "0x2000207")]
[AttributeUsage(AttributeTargets.Assembly)]
[ComVisible(true)]
public sealed class SatelliteContractVersionAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.SatelliteContractVersionAttribute" /> class.</summary>
/// <param name="version">A string that specifies the version of the satellite assemblies to load.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="version" /> parameter is <see langword="null" />.</exception>
// Token: 0x060013E7 RID: 5095 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013E7")]
[Address(RVA = "0x2CFCE60", Offset = "0x2CFBE60", VA = "0x182CFCE60")]
public SatelliteContractVersionAttribute(string version)
{
}
/// <summary>Gets the version of the satellite assemblies with the required resources.</summary>
/// <returns>A string that contains the version of the satellite assemblies with the required resources.</returns>
// Token: 0x17000200 RID: 512
// (get) Token: 0x060013E8 RID: 5096 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000200")]
public string Version
{
[Token(Token = "0x60013E8")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
// Token: 0x04000A0E RID: 2574
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A0E")]
private string _version;
}
}