Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

46 lines
1.9 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Specifies the settings provider used to provide storage for the current application settings class or property. This class cannot be inherited.</summary>
// Token: 0x020003D2 RID: 978
[Token(Token = "0x20003D2")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class SettingsProviderAttribute : Attribute
{
/// <summary>Initializes an instance of the <see cref="T:System.Configuration.SettingsProviderAttribute" /> class.</summary>
/// <param name="providerTypeName">A <see cref="T:System.String" /> containing the name of the settings provider.</param>
// Token: 0x06001990 RID: 6544 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001990")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
public SettingsProviderAttribute(string providerTypeName)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsProviderAttribute" /> class.</summary>
/// <param name="providerType">A <see cref="T:System.Type" /> containing the settings provider type.</param>
// Token: 0x06001991 RID: 6545 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001991")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0")]
public SettingsProviderAttribute(Type providerType)
{
}
/// <summary>Gets the type name of the settings provider.</summary>
/// <returns>A <see cref="T:System.String" /> containing the name of the settings provider.</returns>
// Token: 0x170005BF RID: 1471
// (get) Token: 0x06001992 RID: 6546 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005BF")]
public string ProviderTypeName
{
[Token(Token = "0x6001992")]
[Address(RVA = "0x2F47C10", Offset = "0x2F46C10", VA = "0x182F47C10")]
get
{
return null;
}
}
}
}