Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Resources/SatelliteContractVersionAttribute.cs
2026-04-10 22:50:51 +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: 0x02000200 RID: 512
[Token(Token = "0x2000200")]
[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: 0x060013A9 RID: 5033 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013A9")]
[Address(RVA = "0x295FCD0", Offset = "0x295EAD0", VA = "0x18295FCD0")]
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: 0x170001F6 RID: 502
// (get) Token: 0x060013AA RID: 5034 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170001F6")]
public string Version
{
[Token(Token = "0x60013AA")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
// Token: 0x04000A04 RID: 2564
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A04")]
private string _version;
}
}