20 lines
852 B
C#
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: 0x020003C7 RID: 967
|
|
[Token(Token = "0x20003C7")]
|
|
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: 0x06001977 RID: 6519
|
|
[Token(Token = "0x6001977")]
|
|
[Address(Slot = "0")]
|
|
SettingsProvider GetSettingsProvider(SettingsProperty property);
|
|
}
|
|
}
|