233 lines
10 KiB
C#
233 lines
10 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Used internally as the class that represents metadata about an individual configuration property.</summary>
|
|
// Token: 0x02000384 RID: 900
|
|
[Token(Token = "0x2000384")]
|
|
public class SettingsProperty
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsProperty" /> class, based on the supplied parameter.</summary>
|
|
/// <param name="propertyToCopy">Specifies a copy of an existing <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
|
// Token: 0x060017B6 RID: 6070 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60017B6")]
|
|
[Address(RVA = "0x28ACDD0", Offset = "0x28ABBD0", VA = "0x1828ACDD0")]
|
|
public SettingsProperty(SettingsProperty propertyToCopy)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsProperty" /> class. based on the supplied parameter.</summary>
|
|
/// <param name="name">Specifies the name of an existing <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
|
// Token: 0x060017B7 RID: 6071 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60017B7")]
|
|
[Address(RVA = "0x28ACE00", Offset = "0x28ABC00", VA = "0x1828ACE00")]
|
|
public SettingsProperty(string name)
|
|
{
|
|
}
|
|
|
|
/// <summary>Creates a new instance of the <see cref="T:System.Configuration.SettingsProperty" /> class based on the supplied parameters.</summary>
|
|
/// <param name="name">The name of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
|
/// <param name="propertyType">The type of <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
|
/// <param name="provider">A <see cref="T:System.Configuration.SettingsProvider" /> object to use for persistence.</param>
|
|
/// <param name="isReadOnly">A <see cref="T:System.Boolean" /> value specifying whether the <see cref="T:System.Configuration.SettingsProperty" /> object is read-only.</param>
|
|
/// <param name="defaultValue">The default value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</param>
|
|
/// <param name="serializeAs">A <see cref="T:System.Configuration.SettingsSerializeAs" /> object. This object is an enumeration used to set the serialization scheme for storing application settings.</param>
|
|
/// <param name="attributes">A <see cref="T:System.Configuration.SettingsAttributeDictionary" /> object.</param>
|
|
/// <param name="throwOnErrorDeserializing">A Boolean value specifying whether an error will be thrown when the property is unsuccessfully deserialized.</param>
|
|
/// <param name="throwOnErrorSerializing">A Boolean value specifying whether an error will be thrown when the property is unsuccessfully serialized.</param>
|
|
// Token: 0x060017B8 RID: 6072 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60017B8")]
|
|
[Address(RVA = "0x28ACDA0", Offset = "0x28ABBA0", VA = "0x1828ACDA0")]
|
|
public SettingsProperty(string name, Type propertyType, SettingsProvider provider, bool isReadOnly, object defaultValue, SettingsSerializeAs serializeAs, SettingsAttributeDictionary attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets a <see cref="T:System.Configuration.SettingsAttributeDictionary" /> object containing the attributes of the <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
|
/// <returns>A <see cref="T:System.Configuration.SettingsAttributeDictionary" /> object.</returns>
|
|
// Token: 0x17000509 RID: 1289
|
|
// (get) Token: 0x060017B9 RID: 6073 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000509")]
|
|
public virtual SettingsAttributeDictionary Attributes
|
|
{
|
|
[Token(Token = "0x60017B9")]
|
|
[Address(RVA = "0x28ACE30", Offset = "0x28ABC30", VA = "0x1828ACE30", Slot = "4")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the default value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
|
|
/// <returns>An object containing the default value of the <see cref="T:System.Configuration.SettingsProperty" /> object.</returns>
|
|
// Token: 0x1700050A RID: 1290
|
|
// (get) Token: 0x060017BA RID: 6074 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060017BB RID: 6075 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x1700050A")]
|
|
public virtual object DefaultValue
|
|
{
|
|
[Token(Token = "0x60017BA")]
|
|
[Address(RVA = "0x28ACE60", Offset = "0x28ABC60", VA = "0x1828ACE60", Slot = "5")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60017BB")]
|
|
[Address(RVA = "0x28ACFE0", Offset = "0x28ABDE0", VA = "0x1828ACFE0", Slot = "6")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a value specifying whether a <see cref="T:System.Configuration.SettingsProperty" /> object is read-only.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the <see cref="T:System.Configuration.SettingsProperty" /> is read-only; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x1700050B RID: 1291
|
|
// (get) Token: 0x060017BC RID: 6076 RVA: 0x0000A620 File Offset: 0x00008820
|
|
// (set) Token: 0x060017BD RID: 6077 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x1700050B")]
|
|
public virtual bool IsReadOnly
|
|
{
|
|
[Token(Token = "0x60017BC")]
|
|
[Address(RVA = "0x28ACE90", Offset = "0x28ABC90", VA = "0x1828ACE90", Slot = "7")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
[Token(Token = "0x60017BD")]
|
|
[Address(RVA = "0x28AD010", Offset = "0x28ABE10", VA = "0x1828AD010", Slot = "8")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the name of the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
|
/// <returns>The name of the <see cref="T:System.Configuration.SettingsProperty" />.</returns>
|
|
// Token: 0x1700050C RID: 1292
|
|
// (get) Token: 0x060017BE RID: 6078 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060017BF RID: 6079 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x1700050C")]
|
|
public virtual string Name
|
|
{
|
|
[Token(Token = "0x60017BE")]
|
|
[Address(RVA = "0x28ACEC0", Offset = "0x28ABCC0", VA = "0x1828ACEC0", Slot = "9")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60017BF")]
|
|
[Address(RVA = "0x28AD040", Offset = "0x28ABE40", VA = "0x1828AD040", Slot = "10")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the type for the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
|
/// <returns>The type for the <see cref="T:System.Configuration.SettingsProperty" />.</returns>
|
|
// Token: 0x1700050D RID: 1293
|
|
// (get) Token: 0x060017C0 RID: 6080 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060017C1 RID: 6081 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x1700050D")]
|
|
public virtual Type PropertyType
|
|
{
|
|
[Token(Token = "0x60017C0")]
|
|
[Address(RVA = "0x28ACEF0", Offset = "0x28ABCF0", VA = "0x1828ACEF0", Slot = "11")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60017C1")]
|
|
[Address(RVA = "0x28AD070", Offset = "0x28ABE70", VA = "0x1828AD070", Slot = "12")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the provider for the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
|
/// <returns>A <see cref="T:System.Configuration.SettingsProvider" /> object.</returns>
|
|
// Token: 0x1700050E RID: 1294
|
|
// (get) Token: 0x060017C2 RID: 6082 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060017C3 RID: 6083 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x1700050E")]
|
|
public virtual SettingsProvider Provider
|
|
{
|
|
[Token(Token = "0x60017C2")]
|
|
[Address(RVA = "0x28ACF20", Offset = "0x28ABD20", VA = "0x1828ACF20", Slot = "13")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60017C3")]
|
|
[Address(RVA = "0x28AD0A0", Offset = "0x28ABEA0", VA = "0x1828AD0A0", Slot = "14")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a <see cref="T:System.Configuration.SettingsSerializeAs" /> object for the <see cref="T:System.Configuration.SettingsProperty" />.</summary>
|
|
/// <returns>A <see cref="T:System.Configuration.SettingsSerializeAs" /> object.</returns>
|
|
// Token: 0x1700050F RID: 1295
|
|
// (get) Token: 0x060017C4 RID: 6084 RVA: 0x0000A638 File Offset: 0x00008838
|
|
// (set) Token: 0x060017C5 RID: 6085 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x1700050F")]
|
|
public virtual SettingsSerializeAs SerializeAs
|
|
{
|
|
[Token(Token = "0x60017C4")]
|
|
[Address(RVA = "0x28ACF50", Offset = "0x28ABD50", VA = "0x1828ACF50", Slot = "15")]
|
|
get
|
|
{
|
|
return SettingsSerializeAs.String;
|
|
}
|
|
[Token(Token = "0x60017C5")]
|
|
[Address(RVA = "0x28AD0D0", Offset = "0x28ABED0", VA = "0x1828AD0D0", Slot = "16")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a value specifying whether an error will be thrown when the property is unsuccessfully deserialized.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the error will be thrown when the property is unsuccessfully deserialized; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x17000510 RID: 1296
|
|
// (get) Token: 0x060017C6 RID: 6086 RVA: 0x0000A650 File Offset: 0x00008850
|
|
// (set) Token: 0x060017C7 RID: 6087 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000510")]
|
|
public bool ThrowOnErrorDeserializing
|
|
{
|
|
[Token(Token = "0x60017C6")]
|
|
[Address(RVA = "0x28ACF80", Offset = "0x28ABD80", VA = "0x1828ACF80")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
[Token(Token = "0x60017C7")]
|
|
[Address(RVA = "0x28AD100", Offset = "0x28ABF00", VA = "0x1828AD100")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a value specifying whether an error will be thrown when the property is unsuccessfully serialized.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the error will be thrown when the property is unsuccessfully serialized; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x17000511 RID: 1297
|
|
// (get) Token: 0x060017C8 RID: 6088 RVA: 0x0000A668 File Offset: 0x00008868
|
|
// (set) Token: 0x060017C9 RID: 6089 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000511")]
|
|
public bool ThrowOnErrorSerializing
|
|
{
|
|
[Token(Token = "0x60017C8")]
|
|
[Address(RVA = "0x28ACFB0", Offset = "0x28ABDB0", VA = "0x1828ACFB0")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
[Token(Token = "0x60017C9")]
|
|
[Address(RVA = "0x28AD130", Offset = "0x28ABF30", VA = "0x1828AD130")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|