Files
2026-06-04 11:42:34 +02:00

35 lines
1.2 KiB
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Indicates that a method's unmanaged signature expects a locale identifier (LCID) parameter.</summary>
// Token: 0x0200032C RID: 812
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
public sealed class LCIDConversionAttribute : Attribute
{
/// <summary>Initializes a new instance of the LCIDConversionAttribute class with the position of the LCID in the unmanaged signature.</summary>
/// <param name="lcid">Indicates the position of the LCID argument in the unmanaged signature, where 0 is the first argument. </param>
// Token: 0x06002243 RID: 8771 RVA: 0x00079890 File Offset: 0x00077A90
public LCIDConversionAttribute(int lcid)
{
this.id = lcid;
}
/// <summary>Gets the position of the LCID argument in the unmanaged signature.</summary>
/// <returns>The position of the LCID argument in the unmanaged signature, where 0 is the first argument.</returns>
// Token: 0x17000654 RID: 1620
// (get) Token: 0x06002244 RID: 8772 RVA: 0x000798A0 File Offset: 0x00077AA0
public int Value
{
get
{
return this.id;
}
}
// Token: 0x04000D62 RID: 3426
private int id;
}
}