54 lines
1.8 KiB
C#
54 lines
1.8 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Provides the configuration setting for International Domain Name (IDN) processing in the <see cref="T:System.Uri" /> class.</summary>
|
|
// Token: 0x020003BF RID: 959
|
|
[Token(Token = "0x20003BF")]
|
|
public sealed class IdnElement : ConfigurationElement
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.IdnElement" /> class.</summary>
|
|
// Token: 0x0600194F RID: 6479 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600194F")]
|
|
[Address(RVA = "0x2F40EC0", Offset = "0x2F3FEC0", VA = "0x182F40EC0")]
|
|
public IdnElement()
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets the value of the <see cref="T:System.Configuration.IdnElement" /> configuration setting.</summary>
|
|
/// <returns>A <see cref="T:System.UriIdnScope" /> that contains the current configuration setting for IDN processing.</returns>
|
|
// Token: 0x170005AD RID: 1453
|
|
// (get) Token: 0x06001950 RID: 6480 RVA: 0x0000AC38 File Offset: 0x00008E38
|
|
// (set) Token: 0x06001951 RID: 6481 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x170005AD")]
|
|
public UriIdnScope Enabled
|
|
{
|
|
[Token(Token = "0x6001950")]
|
|
[Address(RVA = "0x2F40EF0", Offset = "0x2F3FEF0", VA = "0x182F40EF0")]
|
|
get
|
|
{
|
|
return UriIdnScope.None;
|
|
}
|
|
[Token(Token = "0x6001951")]
|
|
[Address(RVA = "0x2F40F50", Offset = "0x2F3FF50", VA = "0x182F40F50")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x170005AE RID: 1454
|
|
// (get) Token: 0x06001952 RID: 6482 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170005AE")]
|
|
protected override ConfigurationPropertyCollection Properties
|
|
{
|
|
[Token(Token = "0x6001952")]
|
|
[Address(RVA = "0x2F40F20", Offset = "0x2F3FF20", VA = "0x182F40F20", Slot = "4")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|