Files
2026-04-10 22:50:51 +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: 0x020003D6 RID: 982
[Token(Token = "0x20003D6")]
[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: 0x060019A7 RID: 6567 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019A7")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
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: 0x060019A8 RID: 6568 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019A8")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
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: 0x170005C3 RID: 1475
// (get) Token: 0x060019A9 RID: 6569 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005C3")]
public string ProviderTypeName
{
[Token(Token = "0x60019A9")]
[Address(RVA = "0x28AD160", Offset = "0x28ABF60", VA = "0x1828AD160")]
get
{
return null;
}
}
}
}