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

20 lines
852 B
C#

using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides an interface for defining an alternate application settings provider.</summary>
// Token: 0x020003C3 RID: 963
[Token(Token = "0x20003C3")]
public interface ISettingsProviderService
{
/// <summary>Returns the settings provider compatible with the specified settings property.</summary>
/// <param name="property">The <see cref="T:System.Configuration.SettingsProperty" /> that requires serialization.</param>
/// <returns>If found, the <see cref="T:System.Configuration.SettingsProvider" /> that can persist the specified settings property; otherwise, <see langword="null" />.</returns>
// Token: 0x06001960 RID: 6496
[Token(Token = "0x6001960")]
[Address(Slot = "0")]
SettingsProvider GetSettingsProvider(SettingsProperty property);
}
}