m
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the type information for an authentication module. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000388 RID: 904
|
||||
[Token(Token = "0x2000388")]
|
||||
public sealed class AuthenticationModuleElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> class.</summary>
|
||||
// Token: 0x060017D8 RID: 6104 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017D8")]
|
||||
[Address(RVA = "0xDC41F0", Offset = "0xDC31F0", VA = "0x180DC41F0")]
|
||||
public AuthenticationModuleElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> class with the specified type information.</summary>
|
||||
/// <param name="typeName">A string that identifies the type and the assembly that contains it.</param>
|
||||
// Token: 0x060017D9 RID: 6105 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017D9")]
|
||||
[Address(RVA = "0xDC41C0", Offset = "0xDC31C0", VA = "0x180DC41C0")]
|
||||
public AuthenticationModuleElement(string typeName)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700051B RID: 1307
|
||||
// (get) Token: 0x060017DA RID: 6106 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700051B")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60017DA")]
|
||||
[Address(RVA = "0xDC4220", Offset = "0xDC3220", VA = "0x180DC4220", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the type and assembly information for the current instance.</summary>
|
||||
/// <returns>A string that identifies a type that implements an authentication module or <see langword="null" /> if no value has been specified.</returns>
|
||||
// Token: 0x1700051C RID: 1308
|
||||
// (get) Token: 0x060017DB RID: 6107 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017DC RID: 6108 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700051C")]
|
||||
public string Type
|
||||
{
|
||||
[Token(Token = "0x60017DB")]
|
||||
[Address(RVA = "0xDC4250", Offset = "0xDC3250", VA = "0x180DC4250")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017DC")]
|
||||
[Address(RVA = "0xDC4280", Offset = "0xDC3280", VA = "0x180DC4280")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents a container for authentication module configuration elements. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000389 RID: 905
|
||||
[Token(Token = "0x2000389")]
|
||||
[ConfigurationCollection(typeof(AuthenticationModuleElement))]
|
||||
public sealed class AuthenticationModuleElementCollection : ConfigurationElementCollection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModuleElementCollection" /> class.</summary>
|
||||
// Token: 0x060017DD RID: 6109 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017DD")]
|
||||
[Address(RVA = "0xDC40D0", Offset = "0xDC30D0", VA = "0x180DC40D0")]
|
||||
public AuthenticationModuleElementCollection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060017DE RID: 6110 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017DE")]
|
||||
[Address(RVA = "0xDC4100", Offset = "0xDC3100", VA = "0x180DC4100")]
|
||||
public AuthenticationModuleElement get_Item(int index)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060017DF RID: 6111 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017DF")]
|
||||
[Address(RVA = "0xDC4190", Offset = "0xDC3190", VA = "0x180DC4190")]
|
||||
public void set_Item(int index, AuthenticationModuleElement value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the element with the specified key.</summary>
|
||||
/// <param name="name">The key for an element in the collection.</param>
|
||||
/// <returns>The <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> with the specified key or <see langword="null" /> if there is no element with the specified key.</returns>
|
||||
// Token: 0x1700051D RID: 1309
|
||||
[Token(Token = "0x1700051D")]
|
||||
public AuthenticationModuleElement this[string name]
|
||||
{
|
||||
[Token(Token = "0x60017E0")]
|
||||
[Address(RVA = "0xDC4130", Offset = "0xDC3130", VA = "0x180DC4130")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017E1")]
|
||||
[Address(RVA = "0xDC4160", Offset = "0xDC3160", VA = "0x180DC4160")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds an element to the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> to add to the collection.</param>
|
||||
// Token: 0x060017E2 RID: 6114 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E2")]
|
||||
[Address(RVA = "0xDC3F50", Offset = "0xDC2F50", VA = "0x180DC3F50")]
|
||||
public void Add(AuthenticationModuleElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all elements from the collection.</summary>
|
||||
// Token: 0x060017E3 RID: 6115 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E3")]
|
||||
[Address(RVA = "0xDC3F80", Offset = "0xDC2F80", VA = "0x180DC3F80")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060017E4 RID: 6116 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017E4")]
|
||||
[Address(RVA = "0xDC3FB0", Offset = "0xDC2FB0", VA = "0x180DC3FB0", Slot = "16")]
|
||||
protected override ConfigurationElement CreateNewElement()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060017E5 RID: 6117 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017E5")]
|
||||
[Address(RVA = "0xDC3FE0", Offset = "0xDC2FE0", VA = "0x180DC3FE0", Slot = "17")]
|
||||
protected override object GetElementKey(ConfigurationElement element)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the index of the specified configuration element.</summary>
|
||||
/// <param name="element">A <see cref="T:System.Net.Configuration.AuthenticationModuleElement" />.</param>
|
||||
/// <returns>The zero-based index of <paramref name="element" />.</returns>
|
||||
// Token: 0x060017E6 RID: 6118 RVA: 0x0000A6E0 File Offset: 0x000088E0
|
||||
[Token(Token = "0x60017E6")]
|
||||
[Address(RVA = "0xDC4010", Offset = "0xDC3010", VA = "0x180DC4010")]
|
||||
public int IndexOf(AuthenticationModuleElement element)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Removes the specified configuration element from the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.AuthenticationModuleElement" /> to remove.</param>
|
||||
// Token: 0x060017E7 RID: 6119 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E7")]
|
||||
[Address(RVA = "0xDC40A0", Offset = "0xDC30A0", VA = "0x180DC40A0")]
|
||||
public void Remove(AuthenticationModuleElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element with the specified key.</summary>
|
||||
/// <param name="name">The key of the element to remove.</param>
|
||||
// Token: 0x060017E8 RID: 6120 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E8")]
|
||||
[Address(RVA = "0xDC4070", Offset = "0xDC3070", VA = "0x180DC4070")]
|
||||
public void Remove(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element at the specified index.</summary>
|
||||
/// <param name="index">The zero-based index of the element to remove.</param>
|
||||
// Token: 0x060017E9 RID: 6121 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017E9")]
|
||||
[Address(RVA = "0xDC4040", Offset = "0xDC3040", VA = "0x180DC4040")]
|
||||
public void RemoveAt(int index)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the configuration section for authentication modules. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200038A RID: 906
|
||||
[Token(Token = "0x200038A")]
|
||||
public sealed class AuthenticationModulesSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.AuthenticationModulesSection" /> class.</summary>
|
||||
// Token: 0x060017EA RID: 6122 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017EA")]
|
||||
[Address(RVA = "0xDC4310", Offset = "0xDC3310", VA = "0x180DC4310")]
|
||||
public AuthenticationModulesSection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of authentication modules in the section.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.AuthenticationModuleElementCollection" /> that contains the registered authentication modules.</returns>
|
||||
// Token: 0x1700051E RID: 1310
|
||||
// (get) Token: 0x060017EB RID: 6123 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700051E")]
|
||||
public AuthenticationModuleElementCollection AuthenticationModules
|
||||
{
|
||||
[Token(Token = "0x60017EB")]
|
||||
[Address(RVA = "0xDC4340", Offset = "0xDC3340", VA = "0x180DC4340")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700051F RID: 1311
|
||||
// (get) Token: 0x060017EC RID: 6124 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700051F")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60017EC")]
|
||||
[Address(RVA = "0xDC4370", Offset = "0xDC3370", VA = "0x180DC4370", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060017ED RID: 6125 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017ED")]
|
||||
[Address(RVA = "0xDC42B0", Offset = "0xDC32B0", VA = "0x180DC42B0", Slot = "6")]
|
||||
protected override void InitializeDefault()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060017EE RID: 6126 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017EE")]
|
||||
[Address(RVA = "0xDC42E0", Offset = "0xDC32E0", VA = "0x180DC42E0", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the address information for resources that are not retrieved using a proxy server. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200038B RID: 907
|
||||
[Token(Token = "0x200038B")]
|
||||
public sealed class BypassElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.BypassElement" /> class.</summary>
|
||||
// Token: 0x060017EF RID: 6127 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017EF")]
|
||||
[Address(RVA = "0xDC6EB0", Offset = "0xDC5EB0", VA = "0x180DC6EB0")]
|
||||
public BypassElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.BypassElement" /> class with the specified type information.</summary>
|
||||
/// <param name="address">A string that identifies the address of a resource.</param>
|
||||
// Token: 0x060017F0 RID: 6128 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017F0")]
|
||||
[Address(RVA = "0xDC6E80", Offset = "0xDC5E80", VA = "0x180DC6E80")]
|
||||
public BypassElement(string address)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the addresses of resources that bypass the proxy server.</summary>
|
||||
/// <returns>A string that identifies a resource.</returns>
|
||||
// Token: 0x17000520 RID: 1312
|
||||
// (get) Token: 0x060017F1 RID: 6129 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060017F2 RID: 6130 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000520")]
|
||||
public string Address
|
||||
{
|
||||
[Token(Token = "0x60017F1")]
|
||||
[Address(RVA = "0xDC6EE0", Offset = "0xDC5EE0", VA = "0x180DC6EE0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017F2")]
|
||||
[Address(RVA = "0xDC6F40", Offset = "0xDC5F40", VA = "0x180DC6F40")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000521 RID: 1313
|
||||
// (get) Token: 0x060017F3 RID: 6131 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000521")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60017F3")]
|
||||
[Address(RVA = "0xDC6F10", Offset = "0xDC5F10", VA = "0x180DC6F10", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents a container for the addresses of resources that bypass the proxy server. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200038C RID: 908
|
||||
[Token(Token = "0x200038C")]
|
||||
[ConfigurationCollection(typeof(BypassElement))]
|
||||
public sealed class BypassElementCollection : ConfigurationElementCollection
|
||||
{
|
||||
/// <summary>Initializes an empty instance of the <see cref="T:System.Net.Configuration.BypassElementCollection" /> class.</summary>
|
||||
// Token: 0x060017F4 RID: 6132 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017F4")]
|
||||
[Address(RVA = "0xDC6D60", Offset = "0xDC5D60", VA = "0x180DC6D60")]
|
||||
public BypassElementCollection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060017F5 RID: 6133 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017F5")]
|
||||
[Address(RVA = "0xDC6D90", Offset = "0xDC5D90", VA = "0x180DC6D90")]
|
||||
public BypassElement get_Item(int index)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060017F6 RID: 6134 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017F6")]
|
||||
[Address(RVA = "0xDC6E50", Offset = "0xDC5E50", VA = "0x180DC6E50")]
|
||||
public void set_Item(int index, BypassElement value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the element with the specified key.</summary>
|
||||
/// <param name="name">The key for an element in the collection.</param>
|
||||
/// <returns>The <see cref="T:System.Net.Configuration.BypassElement" /> with the specified key, or <see langword="null" /> if there is no element with the specified key.</returns>
|
||||
// Token: 0x17000522 RID: 1314
|
||||
[Token(Token = "0x17000522")]
|
||||
public BypassElement this[string name]
|
||||
{
|
||||
[Token(Token = "0x60017F7")]
|
||||
[Address(RVA = "0xDC6DC0", Offset = "0xDC5DC0", VA = "0x180DC6DC0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60017F8")]
|
||||
[Address(RVA = "0xDC6E20", Offset = "0xDC5E20", VA = "0x180DC6E20")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000523 RID: 1315
|
||||
// (get) Token: 0x060017F9 RID: 6137 RVA: 0x0000A6F8 File Offset: 0x000088F8
|
||||
[Token(Token = "0x17000523")]
|
||||
protected override bool ThrowOnDuplicate
|
||||
{
|
||||
[Token(Token = "0x60017F9")]
|
||||
[Address(RVA = "0xDC6DF0", Offset = "0xDC5DF0", VA = "0x180DC6DF0", Slot = "15")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds an element to the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.BypassElement" /> to add to the collection.</param>
|
||||
// Token: 0x060017FA RID: 6138 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017FA")]
|
||||
[Address(RVA = "0xDC6BE0", Offset = "0xDC5BE0", VA = "0x180DC6BE0")]
|
||||
public void Add(BypassElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all elements from the collection.</summary>
|
||||
// Token: 0x060017FB RID: 6139 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017FB")]
|
||||
[Address(RVA = "0xDC6C10", Offset = "0xDC5C10", VA = "0x180DC6C10")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060017FC RID: 6140 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017FC")]
|
||||
[Address(RVA = "0xDC6C40", Offset = "0xDC5C40", VA = "0x180DC6C40", Slot = "16")]
|
||||
protected override ConfigurationElement CreateNewElement()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060017FD RID: 6141 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60017FD")]
|
||||
[Address(RVA = "0xDC6C70", Offset = "0xDC5C70", VA = "0x180DC6C70", Slot = "17")]
|
||||
protected override object GetElementKey(ConfigurationElement element)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the index of the specified configuration element.</summary>
|
||||
/// <param name="element">A <see cref="T:System.Net.Configuration.BypassElement" />.</param>
|
||||
/// <returns>The zero-based index of <paramref name="element" />.</returns>
|
||||
// Token: 0x060017FE RID: 6142 RVA: 0x0000A710 File Offset: 0x00008910
|
||||
[Token(Token = "0x60017FE")]
|
||||
[Address(RVA = "0xDC6CA0", Offset = "0xDC5CA0", VA = "0x180DC6CA0")]
|
||||
public int IndexOf(BypassElement element)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Removes the specified configuration element from the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.BypassElement" /> to remove.</param>
|
||||
// Token: 0x060017FF RID: 6143 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60017FF")]
|
||||
[Address(RVA = "0xDC6D00", Offset = "0xDC5D00", VA = "0x180DC6D00")]
|
||||
public void Remove(BypassElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element with the specified key.</summary>
|
||||
/// <param name="name">The key of the element to remove.</param>
|
||||
// Token: 0x06001800 RID: 6144 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001800")]
|
||||
[Address(RVA = "0xDC6D30", Offset = "0xDC5D30", VA = "0x180DC6D30")]
|
||||
public void Remove(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element at the specified index.</summary>
|
||||
/// <param name="index">The zero-based index of the element to remove.</param>
|
||||
// Token: 0x06001801 RID: 6145 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001801")]
|
||||
[Address(RVA = "0xDC6CD0", Offset = "0xDC5CD0", VA = "0x180DC6CD0")]
|
||||
public void RemoveAt(int index)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the maximum number of connections to a remote computer. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200038D RID: 909
|
||||
[Token(Token = "0x200038D")]
|
||||
public sealed class ConnectionManagementElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ConnectionManagementElement" /> class.</summary>
|
||||
// Token: 0x06001802 RID: 6146 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001802")]
|
||||
[Address(RVA = "0xDC78E0", Offset = "0xDC68E0", VA = "0x180DC78E0")]
|
||||
public ConnectionManagementElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ConnectionManagementElement" /> class with the specified address and connection limit information.</summary>
|
||||
/// <param name="address">A string that identifies the address of a remote computer.</param>
|
||||
/// <param name="maxConnection">An integer that identifies the maximum number of connections allowed to <paramref name="address" /> from the local computer.</param>
|
||||
// Token: 0x06001803 RID: 6147 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001803")]
|
||||
[Address(RVA = "0xDC7910", Offset = "0xDC6910", VA = "0x180DC7910")]
|
||||
public ConnectionManagementElement(string address, int maxConnection)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the address for remote computers.</summary>
|
||||
/// <returns>A string that contains a regular expression describing an IP address or DNS name.</returns>
|
||||
// Token: 0x17000524 RID: 1316
|
||||
// (get) Token: 0x06001804 RID: 6148 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001805 RID: 6149 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000524")]
|
||||
public string Address
|
||||
{
|
||||
[Token(Token = "0x6001804")]
|
||||
[Address(RVA = "0xDC7940", Offset = "0xDC6940", VA = "0x180DC7940")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001805")]
|
||||
[Address(RVA = "0xDC79D0", Offset = "0xDC69D0", VA = "0x180DC79D0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the maximum number of connections that can be made to a remote computer.</summary>
|
||||
/// <returns>An integer that specifies the maximum number of connections.</returns>
|
||||
// Token: 0x17000525 RID: 1317
|
||||
// (get) Token: 0x06001806 RID: 6150 RVA: 0x0000A728 File Offset: 0x00008928
|
||||
// (set) Token: 0x06001807 RID: 6151 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000525")]
|
||||
public int MaxConnection
|
||||
{
|
||||
[Token(Token = "0x6001806")]
|
||||
[Address(RVA = "0xDC7970", Offset = "0xDC6970", VA = "0x180DC7970")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6001807")]
|
||||
[Address(RVA = "0xDC7A00", Offset = "0xDC6A00", VA = "0x180DC7A00")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000526 RID: 1318
|
||||
// (get) Token: 0x06001808 RID: 6152 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000526")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001808")]
|
||||
[Address(RVA = "0xDC79A0", Offset = "0xDC69A0", VA = "0x180DC79A0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents a container for connection management configuration elements. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200038E RID: 910
|
||||
[Token(Token = "0x200038E")]
|
||||
[ConfigurationCollection(typeof(ConnectionManagementElement))]
|
||||
public sealed class ConnectionManagementElementCollection : ConfigurationElementCollection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ConnectionManagementElementCollection" /> class.</summary>
|
||||
// Token: 0x06001809 RID: 6153 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001809")]
|
||||
[Address(RVA = "0xDC77F0", Offset = "0xDC67F0", VA = "0x180DC77F0")]
|
||||
public ConnectionManagementElementCollection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600180A RID: 6154 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600180A")]
|
||||
[Address(RVA = "0xDC7820", Offset = "0xDC6820", VA = "0x180DC7820")]
|
||||
public ConnectionManagementElement get_Item(int index)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600180B RID: 6155 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600180B")]
|
||||
[Address(RVA = "0xDC78B0", Offset = "0xDC68B0", VA = "0x180DC78B0")]
|
||||
public void set_Item(int index, ConnectionManagementElement value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the element with the specified key.</summary>
|
||||
/// <param name="name">The key for an element in the collection.</param>
|
||||
/// <returns>The <see cref="T:System.Net.Configuration.ConnectionManagementElement" /> with the specified key or <see langword="null" /> if there is no element with the specified key.</returns>
|
||||
// Token: 0x17000527 RID: 1319
|
||||
[Token(Token = "0x17000527")]
|
||||
public ConnectionManagementElement this[string name]
|
||||
{
|
||||
[Token(Token = "0x600180C")]
|
||||
[Address(RVA = "0xDC7850", Offset = "0xDC6850", VA = "0x180DC7850")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600180D")]
|
||||
[Address(RVA = "0xDC7880", Offset = "0xDC6880", VA = "0x180DC7880")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds an element to the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.ConnectionManagementElement" /> to add to the collection.</param>
|
||||
// Token: 0x0600180E RID: 6158 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600180E")]
|
||||
[Address(RVA = "0xDC7670", Offset = "0xDC6670", VA = "0x180DC7670")]
|
||||
public void Add(ConnectionManagementElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all elements from the collection.</summary>
|
||||
// Token: 0x0600180F RID: 6159 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600180F")]
|
||||
[Address(RVA = "0xDC76A0", Offset = "0xDC66A0", VA = "0x180DC76A0")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001810 RID: 6160 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001810")]
|
||||
[Address(RVA = "0xDC76D0", Offset = "0xDC66D0", VA = "0x180DC76D0", Slot = "16")]
|
||||
protected override ConfigurationElement CreateNewElement()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001811 RID: 6161 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001811")]
|
||||
[Address(RVA = "0xDC7700", Offset = "0xDC6700", VA = "0x180DC7700", Slot = "17")]
|
||||
protected override object GetElementKey(ConfigurationElement element)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the index of the specified configuration element.</summary>
|
||||
/// <param name="element">A <see cref="T:System.Net.Configuration.ConnectionManagementElement" />.</param>
|
||||
/// <returns>The zero-based index of <paramref name="element" />.</returns>
|
||||
// Token: 0x06001812 RID: 6162 RVA: 0x0000A740 File Offset: 0x00008940
|
||||
[Token(Token = "0x6001812")]
|
||||
[Address(RVA = "0xDC7730", Offset = "0xDC6730", VA = "0x180DC7730")]
|
||||
public int IndexOf(ConnectionManagementElement element)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Removes the specified configuration element from the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.ConnectionManagementElement" /> to remove.</param>
|
||||
// Token: 0x06001813 RID: 6163 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001813")]
|
||||
[Address(RVA = "0xDC7790", Offset = "0xDC6790", VA = "0x180DC7790")]
|
||||
public void Remove(ConnectionManagementElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element with the specified key.</summary>
|
||||
/// <param name="name">The key of the element to remove.</param>
|
||||
// Token: 0x06001814 RID: 6164 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001814")]
|
||||
[Address(RVA = "0xDC77C0", Offset = "0xDC67C0", VA = "0x180DC77C0")]
|
||||
public void Remove(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element at the specified index.</summary>
|
||||
/// <param name="index">The zero-based index of the element to remove.</param>
|
||||
// Token: 0x06001815 RID: 6165 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001815")]
|
||||
[Address(RVA = "0xDC7760", Offset = "0xDC6760", VA = "0x180DC7760")]
|
||||
public void RemoveAt(int index)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the configuration section for connection management. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200038F RID: 911
|
||||
[Token(Token = "0x200038F")]
|
||||
public sealed class ConnectionManagementSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ConnectionManagementSection" /> class.</summary>
|
||||
// Token: 0x06001816 RID: 6166 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001816")]
|
||||
[Address(RVA = "0xDC7A30", Offset = "0xDC6A30", VA = "0x180DC7A30")]
|
||||
public ConnectionManagementSection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of connection management objects in the section.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.ConnectionManagementElementCollection" /> that contains the connection management information for the local computer.</returns>
|
||||
// Token: 0x17000528 RID: 1320
|
||||
// (get) Token: 0x06001817 RID: 6167 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000528")]
|
||||
public ConnectionManagementElementCollection ConnectionManagement
|
||||
{
|
||||
[Token(Token = "0x6001817")]
|
||||
[Address(RVA = "0xDC7A60", Offset = "0xDC6A60", VA = "0x180DC7A60")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000529 RID: 1321
|
||||
// (get) Token: 0x06001818 RID: 6168 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000529")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001818")]
|
||||
[Address(RVA = "0xDC7A90", Offset = "0xDC6A90", VA = "0x180DC7A90", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the configuration section for Web proxy server usage. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000390 RID: 912
|
||||
[Token(Token = "0x2000390")]
|
||||
public sealed class DefaultProxySection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.DefaultProxySection" /> class.</summary>
|
||||
// Token: 0x06001819 RID: 6169 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001819")]
|
||||
[Address(RVA = "0xDCEC70", Offset = "0xDCDC70", VA = "0x180DCEC70")]
|
||||
public DefaultProxySection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of resources that are not obtained using the Web proxy server.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.BypassElementCollection" /> that contains the addresses of resources that bypass the Web proxy server.</returns>
|
||||
// Token: 0x1700052A RID: 1322
|
||||
// (get) Token: 0x0600181A RID: 6170 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700052A")]
|
||||
public BypassElementCollection BypassList
|
||||
{
|
||||
[Token(Token = "0x600181A")]
|
||||
[Address(RVA = "0xDCECA0", Offset = "0xDCDCA0", VA = "0x180DCECA0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets whether a Web proxy is used.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if a Web proxy will be used; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700052B RID: 1323
|
||||
// (get) Token: 0x0600181B RID: 6171 RVA: 0x0000A758 File Offset: 0x00008958
|
||||
// (set) Token: 0x0600181C RID: 6172 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700052B")]
|
||||
public bool Enabled
|
||||
{
|
||||
[Token(Token = "0x600181B")]
|
||||
[Address(RVA = "0xDCECD0", Offset = "0xDCDCD0", VA = "0x180DCECD0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x600181C")]
|
||||
[Address(RVA = "0xDCEDC0", Offset = "0xDCDDC0", VA = "0x180DCEDC0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the type information for a custom Web proxy implementation.</summary>
|
||||
/// <returns>The type information for a custom Web proxy implementation.</returns>
|
||||
// Token: 0x1700052C RID: 1324
|
||||
// (get) Token: 0x0600181D RID: 6173 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700052C")]
|
||||
public ModuleElement Module
|
||||
{
|
||||
[Token(Token = "0x600181D")]
|
||||
[Address(RVA = "0xDCED00", Offset = "0xDCDD00", VA = "0x180DCED00")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700052D RID: 1325
|
||||
// (get) Token: 0x0600181E RID: 6174 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700052D")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600181E")]
|
||||
[Address(RVA = "0xDCED30", Offset = "0xDCDD30", VA = "0x180DCED30", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the URI that identifies the Web proxy server to use.</summary>
|
||||
/// <returns>The URI that identifies the Web proxy server.</returns>
|
||||
// Token: 0x1700052E RID: 1326
|
||||
// (get) Token: 0x0600181F RID: 6175 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700052E")]
|
||||
public ProxyElement Proxy
|
||||
{
|
||||
[Token(Token = "0x600181F")]
|
||||
[Address(RVA = "0xDCED60", Offset = "0xDCDD60", VA = "0x180DCED60")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets whether default credentials are to be used to access a Web proxy server.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if default credentials are to be used; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700052F RID: 1327
|
||||
// (get) Token: 0x06001820 RID: 6176 RVA: 0x0000A770 File Offset: 0x00008970
|
||||
// (set) Token: 0x06001821 RID: 6177 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700052F")]
|
||||
public bool UseDefaultCredentials
|
||||
{
|
||||
[Token(Token = "0x6001820")]
|
||||
[Address(RVA = "0xDCED90", Offset = "0xDCDD90", VA = "0x180DCED90")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001821")]
|
||||
[Address(RVA = "0xDCEDF0", Offset = "0xDCDDF0", VA = "0x180DCEDF0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001822 RID: 6178 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001822")]
|
||||
[Address(RVA = "0xDCEC10", Offset = "0xDCDC10", VA = "0x180DCEC10", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001823 RID: 6179 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001823")]
|
||||
[Address(RVA = "0xDCEC40", Offset = "0xDCDC40", VA = "0x180DCEC40", Slot = "9")]
|
||||
protected override void Reset(ConfigurationElement parentElement)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
// Token: 0x02000303 RID: 771
|
||||
[Token(Token = "0x2000303")]
|
||||
internal sealed class DefaultProxySectionInternal
|
||||
{
|
||||
// Token: 0x0600145E RID: 5214 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600145E")]
|
||||
[Address(RVA = "0xDCEA20", Offset = "0xDCDA20", VA = "0x180DCEA20")]
|
||||
private static IWebProxy GetDefaultProxy_UsingOldMonoCode()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600145F RID: 5215 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600145F")]
|
||||
[Address(RVA = "0xDCEA20", Offset = "0xDCDA20", VA = "0x180DCEA20")]
|
||||
private static IWebProxy GetSystemWebProxy()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000423 RID: 1059
|
||||
// (get) Token: 0x06001460 RID: 5216 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000423")]
|
||||
internal static object ClassSyncObject
|
||||
{
|
||||
[Token(Token = "0x6001460")]
|
||||
[Address(RVA = "0xDCEB80", Offset = "0xDCDB80", VA = "0x180DCEB80")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001461 RID: 5217 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001461")]
|
||||
[Address(RVA = "0xDCEA30", Offset = "0xDCDA30", VA = "0x180DCEA30")]
|
||||
internal static DefaultProxySectionInternal GetSection()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000424 RID: 1060
|
||||
// (get) Token: 0x06001462 RID: 5218 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000424")]
|
||||
internal IWebProxy WebProxy
|
||||
{
|
||||
[Token(Token = "0x6001462")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001463 RID: 5219 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001463")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public DefaultProxySectionInternal()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000CF2 RID: 3314
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000CF2")]
|
||||
private IWebProxy webProxy;
|
||||
|
||||
// Token: 0x04000CF3 RID: 3315
|
||||
[Token(Token = "0x4000CF3")]
|
||||
private static object classSyncObject;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using System.Net.Cache;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the default FTP cache policy for network resources. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000396 RID: 918
|
||||
[Token(Token = "0x2000396")]
|
||||
public sealed class FtpCachePolicyElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.FtpCachePolicyElement" /> class.</summary>
|
||||
// Token: 0x06001834 RID: 6196 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001834")]
|
||||
[Address(RVA = "0xDD22D0", Offset = "0xDD12D0", VA = "0x180DD22D0")]
|
||||
public FtpCachePolicyElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets FTP caching behavior for the local machine.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Cache.RequestCacheLevel" /> value that specifies the cache behavior.</returns>
|
||||
// Token: 0x17000538 RID: 1336
|
||||
// (get) Token: 0x06001835 RID: 6197 RVA: 0x0000A7D0 File Offset: 0x000089D0
|
||||
// (set) Token: 0x06001836 RID: 6198 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000538")]
|
||||
public RequestCacheLevel PolicyLevel
|
||||
{
|
||||
[Token(Token = "0x6001835")]
|
||||
[Address(RVA = "0xDD2300", Offset = "0xDD1300", VA = "0x180DD2300")]
|
||||
get
|
||||
{
|
||||
return RequestCacheLevel.Default;
|
||||
}
|
||||
[Token(Token = "0x6001836")]
|
||||
[Address(RVA = "0xDD2360", Offset = "0xDD1360", VA = "0x180DD2360")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000539 RID: 1337
|
||||
// (get) Token: 0x06001837 RID: 6199 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000539")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001837")]
|
||||
[Address(RVA = "0xDD2330", Offset = "0xDD1330", VA = "0x180DD2330", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001838 RID: 6200 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001838")]
|
||||
[Address(RVA = "0xDD2270", Offset = "0xDD1270", VA = "0x180DD2270", Slot = "5")]
|
||||
protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001839 RID: 6201 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001839")]
|
||||
[Address(RVA = "0xDD22A0", Offset = "0xDD12A0", VA = "0x180DD22A0", Slot = "9")]
|
||||
protected override void Reset(ConfigurationElement parentElement)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,133 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using System.Net.Cache;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the default HTTP cache policy for network resources. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000397 RID: 919
|
||||
[Token(Token = "0x2000397")]
|
||||
public sealed class HttpCachePolicyElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.HttpCachePolicyElement" /> class.</summary>
|
||||
// Token: 0x0600183A RID: 6202 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600183A")]
|
||||
[Address(RVA = "0xDD2BA0", Offset = "0xDD1BA0", VA = "0x180DD2BA0")]
|
||||
public HttpCachePolicyElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the maximum age permitted for a resource returned from the cache.</summary>
|
||||
/// <returns>A <see cref="T:System.TimeSpan" /> value that specifies the maximum age for cached resources specified in the configuration file.</returns>
|
||||
// Token: 0x1700053A RID: 1338
|
||||
// (get) Token: 0x0600183B RID: 6203 RVA: 0x0000A7E8 File Offset: 0x000089E8
|
||||
// (set) Token: 0x0600183C RID: 6204 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700053A")]
|
||||
public TimeSpan MaximumAge
|
||||
{
|
||||
[Token(Token = "0x600183B")]
|
||||
[Address(RVA = "0xDD2BD0", Offset = "0xDD1BD0", VA = "0x180DD2BD0")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
[Token(Token = "0x600183C")]
|
||||
[Address(RVA = "0xDD2CC0", Offset = "0xDD1CC0", VA = "0x180DD2CC0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the maximum staleness value permitted for a resource returned from the cache.</summary>
|
||||
/// <returns>A <see cref="T:System.TimeSpan" /> value that is set to the maximum staleness value specified in the configuration file.</returns>
|
||||
// Token: 0x1700053B RID: 1339
|
||||
// (get) Token: 0x0600183D RID: 6205 RVA: 0x0000A800 File Offset: 0x00008A00
|
||||
// (set) Token: 0x0600183E RID: 6206 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700053B")]
|
||||
public TimeSpan MaximumStale
|
||||
{
|
||||
[Token(Token = "0x600183D")]
|
||||
[Address(RVA = "0xDD2C00", Offset = "0xDD1C00", VA = "0x180DD2C00")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
[Token(Token = "0x600183E")]
|
||||
[Address(RVA = "0xDD2CF0", Offset = "0xDD1CF0", VA = "0x180DD2CF0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the minimum freshness permitted for a resource returned from the cache.</summary>
|
||||
/// <returns>A <see cref="T:System.TimeSpan" /> value that specifies the minimum freshness specified in the configuration file.</returns>
|
||||
// Token: 0x1700053C RID: 1340
|
||||
// (get) Token: 0x0600183F RID: 6207 RVA: 0x0000A818 File Offset: 0x00008A18
|
||||
// (set) Token: 0x06001840 RID: 6208 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700053C")]
|
||||
public TimeSpan MinimumFresh
|
||||
{
|
||||
[Token(Token = "0x600183F")]
|
||||
[Address(RVA = "0xDD2C30", Offset = "0xDD1C30", VA = "0x180DD2C30")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
[Token(Token = "0x6001840")]
|
||||
[Address(RVA = "0xDD2D20", Offset = "0xDD1D20", VA = "0x180DD2D20")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets HTTP caching behavior for the local machine.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Cache.HttpRequestCacheLevel" /> value that specifies the cache behavior.</returns>
|
||||
// Token: 0x1700053D RID: 1341
|
||||
// (get) Token: 0x06001841 RID: 6209 RVA: 0x0000A830 File Offset: 0x00008A30
|
||||
// (set) Token: 0x06001842 RID: 6210 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700053D")]
|
||||
public HttpRequestCacheLevel PolicyLevel
|
||||
{
|
||||
[Token(Token = "0x6001841")]
|
||||
[Address(RVA = "0xDD2C60", Offset = "0xDD1C60", VA = "0x180DD2C60")]
|
||||
get
|
||||
{
|
||||
return HttpRequestCacheLevel.Default;
|
||||
}
|
||||
[Token(Token = "0x6001842")]
|
||||
[Address(RVA = "0xDD2D50", Offset = "0xDD1D50", VA = "0x180DD2D50")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700053E RID: 1342
|
||||
// (get) Token: 0x06001843 RID: 6211 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700053E")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001843")]
|
||||
[Address(RVA = "0xDD2C90", Offset = "0xDD1C90", VA = "0x180DD2C90", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001844 RID: 6212 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001844")]
|
||||
[Address(RVA = "0xDD2B40", Offset = "0xDD1B40", VA = "0x180DD2B40", Slot = "5")]
|
||||
protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001845 RID: 6213 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001845")]
|
||||
[Address(RVA = "0xDD2B70", Offset = "0xDD1B70", VA = "0x180DD2B70", Slot = "9")]
|
||||
protected override void Reset(ConfigurationElement parentElement)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the HttpListener element in the configuration file. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000398 RID: 920
|
||||
[Token(Token = "0x2000398")]
|
||||
public sealed class HttpListenerElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.HttpListenerElement" /> class.</summary>
|
||||
// Token: 0x06001846 RID: 6214 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001846")]
|
||||
[Address(RVA = "0xDD2D80", Offset = "0xDD1D80", VA = "0x180DD2D80")]
|
||||
public HttpListenerElement()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700053F RID: 1343
|
||||
// (get) Token: 0x06001847 RID: 6215 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700053F")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001847")]
|
||||
[Address(RVA = "0xDD2DB0", Offset = "0xDD1DB0", VA = "0x180DD2DB0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the default timeout elements used for an <see cref="T:System.Net.HttpListener" /> object.</summary>
|
||||
/// <returns>The timeout elements used for an <see cref="T:System.Net.HttpListener" /> object.</returns>
|
||||
// Token: 0x17000540 RID: 1344
|
||||
// (get) Token: 0x06001848 RID: 6216 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000540")]
|
||||
public HttpListenerTimeoutsElement Timeouts
|
||||
{
|
||||
[Token(Token = "0x6001848")]
|
||||
[Address(RVA = "0xDD2DE0", Offset = "0xDD1DE0", VA = "0x180DD2DE0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a value that indicates if <see cref="T:System.Net.HttpListener" /> uses the raw unescaped URI instead of the converted URI.</summary>
|
||||
/// <returns>A Boolean value that indicates if <see cref="T:System.Net.HttpListener" /> uses the raw unescaped URI, rather than the converted URI.</returns>
|
||||
// Token: 0x17000541 RID: 1345
|
||||
// (get) Token: 0x06001849 RID: 6217 RVA: 0x0000A848 File Offset: 0x00008A48
|
||||
[Token(Token = "0x17000541")]
|
||||
public bool UnescapeRequestUrl
|
||||
{
|
||||
[Token(Token = "0x6001849")]
|
||||
[Address(RVA = "0xDD2E10", Offset = "0xDD1E10", VA = "0x180DD2E10")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the <see cref="T:System.Net.HttpListener" /> timeouts element in the configuration file. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000399 RID: 921
|
||||
[Token(Token = "0x2000399")]
|
||||
public sealed class HttpListenerTimeoutsElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.HttpListenerTimeoutsElement" /> class.</summary>
|
||||
// Token: 0x0600184A RID: 6218 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600184A")]
|
||||
[Address(RVA = "0xDD2E40", Offset = "0xDD1E40", VA = "0x180DD2E40")]
|
||||
public HttpListenerTimeoutsElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the time, in seconds, allowed for the <see cref="T:System.Net.HttpListener" /> to drain the entity body on a Keep-Alive connection.</summary>
|
||||
/// <returns>The time, in seconds, allowed for the <see cref="T:System.Net.HttpListener" /> to drain the entity body on a Keep-Alive connection.</returns>
|
||||
// Token: 0x17000542 RID: 1346
|
||||
// (get) Token: 0x0600184B RID: 6219 RVA: 0x0000A860 File Offset: 0x00008A60
|
||||
[Token(Token = "0x17000542")]
|
||||
public TimeSpan DrainEntityBody
|
||||
{
|
||||
[Token(Token = "0x600184B")]
|
||||
[Address(RVA = "0xDD2E70", Offset = "0xDD1E70", VA = "0x180DD2E70")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the time, in seconds, allowed for the request entity body to arrive.</summary>
|
||||
/// <returns>The time, in seconds, allowed for the request entity body to arrive.</returns>
|
||||
// Token: 0x17000543 RID: 1347
|
||||
// (get) Token: 0x0600184C RID: 6220 RVA: 0x0000A878 File Offset: 0x00008A78
|
||||
[Token(Token = "0x17000543")]
|
||||
public TimeSpan EntityBody
|
||||
{
|
||||
[Token(Token = "0x600184C")]
|
||||
[Address(RVA = "0xDD2EA0", Offset = "0xDD1EA0", VA = "0x180DD2EA0")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the time, in seconds, allowed for the <see cref="T:System.Net.HttpListener" /> to parse the request header.</summary>
|
||||
/// <returns>The time, in seconds, allowed for the <see cref="T:System.Net.HttpListener" /> to parse the request header.</returns>
|
||||
// Token: 0x17000544 RID: 1348
|
||||
// (get) Token: 0x0600184D RID: 6221 RVA: 0x0000A890 File Offset: 0x00008A90
|
||||
[Token(Token = "0x17000544")]
|
||||
public TimeSpan HeaderWait
|
||||
{
|
||||
[Token(Token = "0x600184D")]
|
||||
[Address(RVA = "0xDD2ED0", Offset = "0xDD1ED0", VA = "0x180DD2ED0")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the time, in seconds, allowed for an idle connection.</summary>
|
||||
/// <returns>The time, in seconds, allowed for an idle connection.</returns>
|
||||
// Token: 0x17000545 RID: 1349
|
||||
// (get) Token: 0x0600184E RID: 6222 RVA: 0x0000A8A8 File Offset: 0x00008AA8
|
||||
[Token(Token = "0x17000545")]
|
||||
public TimeSpan IdleConnection
|
||||
{
|
||||
[Token(Token = "0x600184E")]
|
||||
[Address(RVA = "0xDD2F00", Offset = "0xDD1F00", VA = "0x180DD2F00")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the minimum send rate, in bytes-per-second, for the response.</summary>
|
||||
/// <returns>The minimum send rate, in bytes-per-second, for the response.</returns>
|
||||
// Token: 0x17000546 RID: 1350
|
||||
// (get) Token: 0x0600184F RID: 6223 RVA: 0x0000A8C0 File Offset: 0x00008AC0
|
||||
[Token(Token = "0x17000546")]
|
||||
public long MinSendBytesPerSecond
|
||||
{
|
||||
[Token(Token = "0x600184F")]
|
||||
[Address(RVA = "0xDD2F30", Offset = "0xDD1F30", VA = "0x180DD2F30")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000547 RID: 1351
|
||||
// (get) Token: 0x06001850 RID: 6224 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000547")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001850")]
|
||||
[Address(RVA = "0xDD2F60", Offset = "0xDD1F60", VA = "0x180DD2F60", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the time, in seconds, allowed for the request to remain in the request queue before the <see cref="T:System.Net.HttpListener" /> picks it up.</summary>
|
||||
/// <returns>The time, in seconds, allowed for the request to remain in the request queue before the <see cref="T:System.Net.HttpListener" /> picks it up.</returns>
|
||||
// Token: 0x17000548 RID: 1352
|
||||
// (get) Token: 0x06001851 RID: 6225 RVA: 0x0000A8D8 File Offset: 0x00008AD8
|
||||
[Token(Token = "0x17000548")]
|
||||
public TimeSpan RequestQueue
|
||||
{
|
||||
[Token(Token = "0x6001851")]
|
||||
[Address(RVA = "0xDD2F90", Offset = "0xDD1F90", VA = "0x180DD2F90")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the maximum length for response headers. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200039A RID: 922
|
||||
[Token(Token = "0x200039A")]
|
||||
public sealed class HttpWebRequestElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.HttpWebRequestElement" /> class.</summary>
|
||||
// Token: 0x06001852 RID: 6226 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001852")]
|
||||
[Address(RVA = "0xDD2FF0", Offset = "0xDD1FF0", VA = "0x180DD2FF0")]
|
||||
public HttpWebRequestElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the maximum allowed length of an error response.</summary>
|
||||
/// <returns>A 32-bit signed integer containing the maximum length in kilobytes (1024 bytes) of the error response. The default value is 64.</returns>
|
||||
// Token: 0x17000549 RID: 1353
|
||||
// (get) Token: 0x06001853 RID: 6227 RVA: 0x0000A8F0 File Offset: 0x00008AF0
|
||||
// (set) Token: 0x06001854 RID: 6228 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000549")]
|
||||
public int MaximumErrorResponseLength
|
||||
{
|
||||
[Token(Token = "0x6001853")]
|
||||
[Address(RVA = "0xDD3020", Offset = "0xDD2020", VA = "0x180DD3020")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6001854")]
|
||||
[Address(RVA = "0xDD3110", Offset = "0xDD2110", VA = "0x180DD3110")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the maximum allowed length of the response headers.</summary>
|
||||
/// <returns>A 32-bit signed integer containing the maximum length in kilobytes (1024 bytes) of the response headers. The default value is 64.</returns>
|
||||
// Token: 0x1700054A RID: 1354
|
||||
// (get) Token: 0x06001855 RID: 6229 RVA: 0x0000A908 File Offset: 0x00008B08
|
||||
// (set) Token: 0x06001856 RID: 6230 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700054A")]
|
||||
public int MaximumResponseHeadersLength
|
||||
{
|
||||
[Token(Token = "0x6001855")]
|
||||
[Address(RVA = "0xDD3050", Offset = "0xDD2050", VA = "0x180DD3050")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6001856")]
|
||||
[Address(RVA = "0xDD3140", Offset = "0xDD2140", VA = "0x180DD3140")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the maximum length of an upload in response to an unauthorized error code.</summary>
|
||||
/// <returns>A 32-bit signed integer containing the maximum length (in multiple of 1,024 byte units) of an upload in response to an unauthorized error code. A value of -1 indicates that no size limit will be imposed on the upload. Setting the <see cref="P:System.Net.Configuration.HttpWebRequestElement.MaximumUnauthorizedUploadLength" /> property to any other value will only send the request body if it is smaller than the number of bytes specified. So a value of 1 would indicate to only send the request body if it is smaller than 1,024 bytes.
|
||||
/// The default value for this property is -1.</returns>
|
||||
// Token: 0x1700054B RID: 1355
|
||||
// (get) Token: 0x06001857 RID: 6231 RVA: 0x0000A920 File Offset: 0x00008B20
|
||||
// (set) Token: 0x06001858 RID: 6232 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700054B")]
|
||||
public int MaximumUnauthorizedUploadLength
|
||||
{
|
||||
[Token(Token = "0x6001857")]
|
||||
[Address(RVA = "0xDD3080", Offset = "0xDD2080", VA = "0x180DD3080")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6001858")]
|
||||
[Address(RVA = "0xDD3170", Offset = "0xDD2170", VA = "0x180DD3170")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700054C RID: 1356
|
||||
// (get) Token: 0x06001859 RID: 6233 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700054C")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001859")]
|
||||
[Address(RVA = "0xDD30B0", Offset = "0xDD20B0", VA = "0x180DD30B0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Setting this property ignores validation errors that occur during HTTP parsing.</summary>
|
||||
/// <returns>Boolean that indicates whether this property has been set.</returns>
|
||||
// Token: 0x1700054D RID: 1357
|
||||
// (get) Token: 0x0600185A RID: 6234 RVA: 0x0000A938 File Offset: 0x00008B38
|
||||
// (set) Token: 0x0600185B RID: 6235 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700054D")]
|
||||
public bool UseUnsafeHeaderParsing
|
||||
{
|
||||
[Token(Token = "0x600185A")]
|
||||
[Address(RVA = "0xDD30E0", Offset = "0xDD20E0", VA = "0x180DD30E0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x600185B")]
|
||||
[Address(RVA = "0xDD31A0", Offset = "0xDD21A0", VA = "0x180DD31A0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600185C RID: 6236 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600185C")]
|
||||
[Address(RVA = "0xDD2FC0", Offset = "0xDD1FC0", VA = "0x180DD2FC0", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Determines whether Internet Protocol version 6 is enabled on the local computer. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200039B RID: 923
|
||||
[Token(Token = "0x200039B")]
|
||||
public sealed class Ipv6Element : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.Ipv6Element" /> class.</summary>
|
||||
// Token: 0x0600185D RID: 6237 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600185D")]
|
||||
[Address(RVA = "0xDD5420", Offset = "0xDD4420", VA = "0x180DD5420")]
|
||||
public Ipv6Element()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that indicates whether Internet Protocol version 6 is enabled on the local computer.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if IPv6 is enabled; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700054E RID: 1358
|
||||
// (get) Token: 0x0600185E RID: 6238 RVA: 0x0000A950 File Offset: 0x00008B50
|
||||
// (set) Token: 0x0600185F RID: 6239 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700054E")]
|
||||
public bool Enabled
|
||||
{
|
||||
[Token(Token = "0x600185E")]
|
||||
[Address(RVA = "0xDD5450", Offset = "0xDD4450", VA = "0x180DD5450")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x600185F")]
|
||||
[Address(RVA = "0xDD54B0", Offset = "0xDD44B0", VA = "0x180DD54B0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700054F RID: 1359
|
||||
// (get) Token: 0x06001860 RID: 6240 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700054F")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001860")]
|
||||
[Address(RVA = "0xDD5480", Offset = "0xDD4480", VA = "0x180DD5480", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.MailSettingsSectionGroup" /> class.</summary>
|
||||
// Token: 0x0200039C RID: 924
|
||||
[Token(Token = "0x200039C")]
|
||||
public sealed class MailSettingsSectionGroup : ConfigurationSectionGroup
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.MailSettingsSectionGroup" /> class.</summary>
|
||||
// Token: 0x06001861 RID: 6241 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001861")]
|
||||
[Address(RVA = "0xDD62E0", Offset = "0xDD52E0", VA = "0x180DD62E0")]
|
||||
public MailSettingsSectionGroup()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the SMTP settings for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.SmtpSection" /> object that contains configuration information for the local computer.</returns>
|
||||
// Token: 0x17000550 RID: 1360
|
||||
// (get) Token: 0x06001862 RID: 6242 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000550")]
|
||||
public SmtpSection Smtp
|
||||
{
|
||||
[Token(Token = "0x6001862")]
|
||||
[Address(RVA = "0xDD6310", Offset = "0xDD5310", VA = "0x180DD6310")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the type information for a custom <see cref="T:System.Net.IWebProxy" /> module. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000391 RID: 913
|
||||
[Token(Token = "0x2000391")]
|
||||
public sealed class ModuleElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ModuleElement" /> class.</summary>
|
||||
// Token: 0x06001824 RID: 6180 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001824")]
|
||||
[Address(RVA = "0xDD6340", Offset = "0xDD5340", VA = "0x180DD6340")]
|
||||
public ModuleElement()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17000530 RID: 1328
|
||||
// (get) Token: 0x06001825 RID: 6181 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000530")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001825")]
|
||||
[Address(RVA = "0xDD6370", Offset = "0xDD5370", VA = "0x180DD6370", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the type and assembly information for the current instance.</summary>
|
||||
/// <returns>A string that identifies a type that implements the <see cref="T:System.Net.IWebProxy" /> interface or <see langword="null" /> if no value has been specified.</returns>
|
||||
// Token: 0x17000531 RID: 1329
|
||||
// (get) Token: 0x06001826 RID: 6182 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001827 RID: 6183 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000531")]
|
||||
public string Type
|
||||
{
|
||||
[Token(Token = "0x6001826")]
|
||||
[Address(RVA = "0xDD63A0", Offset = "0xDD53A0", VA = "0x180DD63A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001827")]
|
||||
[Address(RVA = "0xDD63D0", Offset = "0xDD53D0", VA = "0x180DD63D0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Gets the section group information for the networking namespaces. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A0 RID: 928
|
||||
[Token(Token = "0x20003A0")]
|
||||
public sealed class NetSectionGroup : ConfigurationSectionGroup
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.NetSectionGroup" /> class.</summary>
|
||||
// Token: 0x06001884 RID: 6276 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001884")]
|
||||
[Address(RVA = "0xDD6430", Offset = "0xDD5430", VA = "0x180DD6430")]
|
||||
public NetSectionGroup()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration section containing the authentication modules registered for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.AuthenticationModulesSection" /> object.</returns>
|
||||
// Token: 0x17000562 RID: 1378
|
||||
// (get) Token: 0x06001885 RID: 6277 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000562")]
|
||||
public AuthenticationModulesSection AuthenticationModules
|
||||
{
|
||||
[Token(Token = "0x6001885")]
|
||||
[Address(RVA = "0xDD6460", Offset = "0xDD5460", VA = "0x180DD6460")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration section containing the connection management settings for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.ConnectionManagementSection" /> object.</returns>
|
||||
// Token: 0x17000563 RID: 1379
|
||||
// (get) Token: 0x06001886 RID: 6278 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000563")]
|
||||
public ConnectionManagementSection ConnectionManagement
|
||||
{
|
||||
[Token(Token = "0x6001886")]
|
||||
[Address(RVA = "0xDD6490", Offset = "0xDD5490", VA = "0x180DD6490")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration section containing the default Web proxy server settings for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.DefaultProxySection" /> object.</returns>
|
||||
// Token: 0x17000564 RID: 1380
|
||||
// (get) Token: 0x06001887 RID: 6279 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000564")]
|
||||
public DefaultProxySection DefaultProxy
|
||||
{
|
||||
[Token(Token = "0x6001887")]
|
||||
[Address(RVA = "0xDD64C0", Offset = "0xDD54C0", VA = "0x180DD64C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration section containing the SMTP client email settings for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.MailSettingsSectionGroup" /> object.</returns>
|
||||
// Token: 0x17000565 RID: 1381
|
||||
// (get) Token: 0x06001888 RID: 6280 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000565")]
|
||||
public MailSettingsSectionGroup MailSettings
|
||||
{
|
||||
[Token(Token = "0x6001888")]
|
||||
[Address(RVA = "0xDD64F0", Offset = "0xDD54F0", VA = "0x180DD64F0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration section containing the cache configuration settings for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.RequestCachingSection" /> object.</returns>
|
||||
// Token: 0x17000566 RID: 1382
|
||||
// (get) Token: 0x06001889 RID: 6281 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000566")]
|
||||
public RequestCachingSection RequestCaching
|
||||
{
|
||||
[Token(Token = "0x6001889")]
|
||||
[Address(RVA = "0xDD6520", Offset = "0xDD5520", VA = "0x180DD6520")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration section containing the network settings for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.SettingsSection" /> object.</returns>
|
||||
// Token: 0x17000567 RID: 1383
|
||||
// (get) Token: 0x0600188A RID: 6282 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000567")]
|
||||
public SettingsSection Settings
|
||||
{
|
||||
[Token(Token = "0x600188A")]
|
||||
[Address(RVA = "0xDD6550", Offset = "0xDD5550", VA = "0x180DD6550")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration section containing the modules registered for use with the <see cref="T:System.Net.WebRequest" /> class.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.WebRequestModulesSection" /> object.</returns>
|
||||
// Token: 0x17000568 RID: 1384
|
||||
// (get) Token: 0x0600188B RID: 6283 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000568")]
|
||||
public WebRequestModulesSection WebRequestModules
|
||||
{
|
||||
[Token(Token = "0x600188B")]
|
||||
[Address(RVA = "0xDD6580", Offset = "0xDD5580", VA = "0x180DD6580")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see langword="System.Net" /> configuration section group from the specified configuration file.</summary>
|
||||
/// <param name="config">A <see cref="T:System.Configuration.Configuration" /> that represents a configuration file.</param>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.NetSectionGroup" /> that represents the <see langword="System.Net" /> settings in <paramref name="config" />.</returns>
|
||||
// Token: 0x0600188C RID: 6284 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600188C")]
|
||||
[Address(RVA = "0xDD6400", Offset = "0xDD5400", VA = "0x180DD6400")]
|
||||
public static NetSectionGroup GetSectionGroup(Configuration config)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the performance counter element in the <see langword="System.Net" /> configuration file that determines whether networking performance counters are enabled. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A3 RID: 931
|
||||
[Token(Token = "0x20003A3")]
|
||||
public sealed class PerformanceCountersElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Instantiates a <see cref="T:System.Net.Configuration.PerformanceCountersElement" /> object.</summary>
|
||||
// Token: 0x060018A5 RID: 6309 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018A5")]
|
||||
[Address(RVA = "0xDD6660", Offset = "0xDD5660", VA = "0x180DD6660")]
|
||||
public PerformanceCountersElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets whether performance counters are enabled.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if performance counters are enabled; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000579 RID: 1401
|
||||
// (get) Token: 0x060018A6 RID: 6310 RVA: 0x0000AA40 File Offset: 0x00008C40
|
||||
// (set) Token: 0x060018A7 RID: 6311 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000579")]
|
||||
public bool Enabled
|
||||
{
|
||||
[Token(Token = "0x60018A6")]
|
||||
[Address(RVA = "0xDD6690", Offset = "0xDD5690", VA = "0x180DD6690")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018A7")]
|
||||
[Address(RVA = "0xDD66F0", Offset = "0xDD56F0", VA = "0x180DD66F0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700057A RID: 1402
|
||||
// (get) Token: 0x060018A8 RID: 6312 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700057A")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018A8")]
|
||||
[Address(RVA = "0xDD66C0", Offset = "0xDD56C0", VA = "0x180DD66C0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,197 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Identifies the configuration settings for Web proxy server. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000392 RID: 914
|
||||
[Token(Token = "0x2000392")]
|
||||
public sealed class ProxyElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ProxyElement" /> class.</summary>
|
||||
// Token: 0x06001828 RID: 6184 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001828")]
|
||||
[Address(RVA = "0xDD6720", Offset = "0xDD5720", VA = "0x180DD6720")]
|
||||
public ProxyElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets an <see cref="T:System.Net.Configuration.ProxyElement.AutoDetectValues" /> value that controls whether the Web proxy is automatically detected.</summary>
|
||||
/// <returns>
|
||||
/// <see cref="F:System.Net.Configuration.ProxyElement.AutoDetectValues.True" /> if the <see cref="T:System.Net.WebProxy" /> is automatically detected; <see cref="F:System.Net.Configuration.ProxyElement.AutoDetectValues.False" /> if the <see cref="T:System.Net.WebProxy" /> is not automatically detected; or <see cref="F:System.Net.Configuration.ProxyElement.AutoDetectValues.Unspecified" />.</returns>
|
||||
// Token: 0x17000532 RID: 1330
|
||||
// (get) Token: 0x06001829 RID: 6185 RVA: 0x0000A788 File Offset: 0x00008988
|
||||
// (set) Token: 0x0600182A RID: 6186 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000532")]
|
||||
public ProxyElement.AutoDetectValues AutoDetect
|
||||
{
|
||||
[Token(Token = "0x6001829")]
|
||||
[Address(RVA = "0xDD6750", Offset = "0xDD5750", VA = "0x180DD6750")]
|
||||
get
|
||||
{
|
||||
return ProxyElement.AutoDetectValues.False;
|
||||
}
|
||||
[Token(Token = "0x600182A")]
|
||||
[Address(RVA = "0xDD6870", Offset = "0xDD5870", VA = "0x180DD6870")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that indicates whether local resources are retrieved by using a Web proxy server.</summary>
|
||||
/// <returns>A value that indicates whether local resources are retrieved by using a Web proxy server.</returns>
|
||||
// Token: 0x17000533 RID: 1331
|
||||
// (get) Token: 0x0600182B RID: 6187 RVA: 0x0000A7A0 File Offset: 0x000089A0
|
||||
// (set) Token: 0x0600182C RID: 6188 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000533")]
|
||||
public ProxyElement.BypassOnLocalValues BypassOnLocal
|
||||
{
|
||||
[Token(Token = "0x600182B")]
|
||||
[Address(RVA = "0xDD6780", Offset = "0xDD5780", VA = "0x180DD6780")]
|
||||
get
|
||||
{
|
||||
return ProxyElement.BypassOnLocalValues.False;
|
||||
}
|
||||
[Token(Token = "0x600182C")]
|
||||
[Address(RVA = "0xDD68A0", Offset = "0xDD58A0", VA = "0x180DD68A0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000534 RID: 1332
|
||||
// (get) Token: 0x0600182D RID: 6189 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000534")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600182D")]
|
||||
[Address(RVA = "0xDD67B0", Offset = "0xDD57B0", VA = "0x180DD67B0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the URI that identifies the Web proxy server to use.</summary>
|
||||
/// <returns>The URI that identifies the Web proxy server to use.</returns>
|
||||
// Token: 0x17000535 RID: 1333
|
||||
// (get) Token: 0x0600182E RID: 6190 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600182F RID: 6191 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000535")]
|
||||
public Uri ProxyAddress
|
||||
{
|
||||
[Token(Token = "0x600182E")]
|
||||
[Address(RVA = "0xDD67E0", Offset = "0xDD57E0", VA = "0x180DD67E0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600182F")]
|
||||
[Address(RVA = "0xDD68D0", Offset = "0xDD58D0", VA = "0x180DD68D0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets an <see cref="T:System.Uri" /> value that specifies the location of the automatic proxy detection script.</summary>
|
||||
/// <returns>A <see cref="T:System.Uri" /> specifying the location of the automatic proxy detection script.</returns>
|
||||
// Token: 0x17000536 RID: 1334
|
||||
// (get) Token: 0x06001830 RID: 6192 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001831 RID: 6193 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000536")]
|
||||
public Uri ScriptLocation
|
||||
{
|
||||
[Token(Token = "0x6001830")]
|
||||
[Address(RVA = "0xDD6810", Offset = "0xDD5810", VA = "0x180DD6810")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001831")]
|
||||
[Address(RVA = "0xDD6900", Offset = "0xDD5900", VA = "0x180DD6900")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a <see cref="T:System.Boolean" /> value that controls whether the Internet Explorer Web proxy settings are used.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the Internet Explorer LAN settings are used to detect and configure the default <see cref="T:System.Net.WebProxy" /> used for requests; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000537 RID: 1335
|
||||
// (get) Token: 0x06001832 RID: 6194 RVA: 0x0000A7B8 File Offset: 0x000089B8
|
||||
// (set) Token: 0x06001833 RID: 6195 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000537")]
|
||||
public ProxyElement.UseSystemDefaultValues UseSystemDefault
|
||||
{
|
||||
[Token(Token = "0x6001832")]
|
||||
[Address(RVA = "0xDD6840", Offset = "0xDD5840", VA = "0x180DD6840")]
|
||||
get
|
||||
{
|
||||
return ProxyElement.UseSystemDefaultValues.False;
|
||||
}
|
||||
[Token(Token = "0x6001833")]
|
||||
[Address(RVA = "0xDD6930", Offset = "0xDD5930", VA = "0x180DD6930")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Specifies whether the proxy is automatically detected.</summary>
|
||||
// Token: 0x02000393 RID: 915
|
||||
[Token(Token = "0x2000393")]
|
||||
public enum AutoDetectValues
|
||||
{
|
||||
/// <summary>The proxy is not automatically detected.</summary>
|
||||
// Token: 0x04000EDC RID: 3804
|
||||
[Token(Token = "0x4000EDC")]
|
||||
False,
|
||||
/// <summary>The proxy is automatically detected.</summary>
|
||||
// Token: 0x04000EDD RID: 3805
|
||||
[Token(Token = "0x4000EDD")]
|
||||
True,
|
||||
/// <summary>Unspecified.</summary>
|
||||
// Token: 0x04000EDE RID: 3806
|
||||
[Token(Token = "0x4000EDE")]
|
||||
Unspecified = -1
|
||||
}
|
||||
|
||||
/// <summary>Specifies whether the proxy is bypassed for local resources.</summary>
|
||||
// Token: 0x02000394 RID: 916
|
||||
[Token(Token = "0x2000394")]
|
||||
public enum BypassOnLocalValues
|
||||
{
|
||||
/// <summary>All requests for local resources should go through the proxy</summary>
|
||||
// Token: 0x04000EE0 RID: 3808
|
||||
[Token(Token = "0x4000EE0")]
|
||||
False,
|
||||
/// <summary>Access local resources directly.</summary>
|
||||
// Token: 0x04000EE1 RID: 3809
|
||||
[Token(Token = "0x4000EE1")]
|
||||
True,
|
||||
/// <summary>Unspecified.</summary>
|
||||
// Token: 0x04000EE2 RID: 3810
|
||||
[Token(Token = "0x4000EE2")]
|
||||
Unspecified = -1
|
||||
}
|
||||
|
||||
/// <summary>Specifies whether to use the local system proxy settings to determine whether the proxy is bypassed for local resources.</summary>
|
||||
// Token: 0x02000395 RID: 917
|
||||
[Token(Token = "0x2000395")]
|
||||
public enum UseSystemDefaultValues
|
||||
{
|
||||
/// <summary>Do not use system default proxy setting values</summary>
|
||||
// Token: 0x04000EE4 RID: 3812
|
||||
[Token(Token = "0x4000EE4")]
|
||||
False,
|
||||
/// <summary>Use system default proxy setting values.</summary>
|
||||
// Token: 0x04000EE5 RID: 3813
|
||||
[Token(Token = "0x4000EE5")]
|
||||
True,
|
||||
/// <summary>The system default proxy setting is unspecified.</summary>
|
||||
// Token: 0x04000EE6 RID: 3814
|
||||
[Token(Token = "0x4000EE6")]
|
||||
Unspecified = -1
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,165 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using System.Net.Cache;
|
||||
using System.Xml;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the configuration section for cache behavior. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A1 RID: 929
|
||||
[Token(Token = "0x20003A1")]
|
||||
public sealed class RequestCachingSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.RequestCachingSection" /> class.</summary>
|
||||
// Token: 0x0600188D RID: 6285 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600188D")]
|
||||
[Address(RVA = "0xDD70D0", Offset = "0xDD60D0", VA = "0x180DD70D0")]
|
||||
public RequestCachingSection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the default FTP caching behavior for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.FtpCachePolicyElement" /> that defines the default cache policy.</returns>
|
||||
// Token: 0x17000569 RID: 1385
|
||||
// (get) Token: 0x0600188E RID: 6286 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000569")]
|
||||
public FtpCachePolicyElement DefaultFtpCachePolicy
|
||||
{
|
||||
[Token(Token = "0x600188E")]
|
||||
[Address(RVA = "0xDD7100", Offset = "0xDD6100", VA = "0x180DD7100")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the default caching behavior for the local computer.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.HttpCachePolicyElement" /> that defines the default cache policy.</returns>
|
||||
// Token: 0x1700056A RID: 1386
|
||||
// (get) Token: 0x0600188F RID: 6287 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700056A")]
|
||||
public HttpCachePolicyElement DefaultHttpCachePolicy
|
||||
{
|
||||
[Token(Token = "0x600188F")]
|
||||
[Address(RVA = "0xDD7130", Offset = "0xDD6130", VA = "0x180DD7130")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the default cache policy level.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Cache.RequestCacheLevel" /> enumeration value.</returns>
|
||||
// Token: 0x1700056B RID: 1387
|
||||
// (get) Token: 0x06001890 RID: 6288 RVA: 0x0000A9E0 File Offset: 0x00008BE0
|
||||
// (set) Token: 0x06001891 RID: 6289 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700056B")]
|
||||
public RequestCacheLevel DefaultPolicyLevel
|
||||
{
|
||||
[Token(Token = "0x6001890")]
|
||||
[Address(RVA = "0xDD7160", Offset = "0xDD6160", VA = "0x180DD7160")]
|
||||
get
|
||||
{
|
||||
return RequestCacheLevel.Default;
|
||||
}
|
||||
[Token(Token = "0x6001891")]
|
||||
[Address(RVA = "0xDD7250", Offset = "0xDD6250", VA = "0x180DD7250")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that enables caching on the local computer.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if caching is disabled on the local computer; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700056C RID: 1388
|
||||
// (get) Token: 0x06001892 RID: 6290 RVA: 0x0000A9F8 File Offset: 0x00008BF8
|
||||
// (set) Token: 0x06001893 RID: 6291 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700056C")]
|
||||
public bool DisableAllCaching
|
||||
{
|
||||
[Token(Token = "0x6001892")]
|
||||
[Address(RVA = "0xDD7190", Offset = "0xDD6190", VA = "0x180DD7190")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001893")]
|
||||
[Address(RVA = "0xDD7280", Offset = "0xDD6280", VA = "0x180DD7280")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that indicates whether the local computer cache is private.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the cache provides user isolation; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700056D RID: 1389
|
||||
// (get) Token: 0x06001894 RID: 6292 RVA: 0x0000AA10 File Offset: 0x00008C10
|
||||
// (set) Token: 0x06001895 RID: 6293 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700056D")]
|
||||
public bool IsPrivateCache
|
||||
{
|
||||
[Token(Token = "0x6001894")]
|
||||
[Address(RVA = "0xDD71C0", Offset = "0xDD61C0", VA = "0x180DD71C0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001895")]
|
||||
[Address(RVA = "0xDD72B0", Offset = "0xDD62B0", VA = "0x180DD72B0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700056E RID: 1390
|
||||
// (get) Token: 0x06001896 RID: 6294 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700056E")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001896")]
|
||||
[Address(RVA = "0xDD71F0", Offset = "0xDD61F0", VA = "0x180DD71F0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value used as the maximum age for cached resources that do not have expiration information.</summary>
|
||||
/// <returns>A <see cref="T:System.TimeSpan" /> that provides a default maximum age for cached resources.</returns>
|
||||
// Token: 0x1700056F RID: 1391
|
||||
// (get) Token: 0x06001897 RID: 6295 RVA: 0x0000AA28 File Offset: 0x00008C28
|
||||
// (set) Token: 0x06001898 RID: 6296 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700056F")]
|
||||
public TimeSpan UnspecifiedMaximumAge
|
||||
{
|
||||
[Token(Token = "0x6001897")]
|
||||
[Address(RVA = "0xDD7220", Offset = "0xDD6220", VA = "0x180DD7220")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
[Token(Token = "0x6001898")]
|
||||
[Address(RVA = "0xDD72E0", Offset = "0xDD62E0", VA = "0x180DD72E0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001899 RID: 6297 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001899")]
|
||||
[Address(RVA = "0xDD7070", Offset = "0xDD6070", VA = "0x180DD7070", Slot = "5")]
|
||||
protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600189A RID: 6298 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600189A")]
|
||||
[Address(RVA = "0xDD70A0", Offset = "0xDD60A0", VA = "0x180DD70A0", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,193 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using System.Net.Security;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the default settings used to create connections to a remote computer. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A4 RID: 932
|
||||
[Token(Token = "0x20003A4")]
|
||||
public sealed class ServicePointManagerElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ServicePointManagerElement" /> class.</summary>
|
||||
// Token: 0x060018A9 RID: 6313 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018A9")]
|
||||
[Address(RVA = "0xDD7890", Offset = "0xDD6890", VA = "0x180DD7890")]
|
||||
public ServicePointManagerElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that controls checking host name information in an X509 certificate.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to specify host name checking; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700057B RID: 1403
|
||||
// (get) Token: 0x060018AA RID: 6314 RVA: 0x0000AA58 File Offset: 0x00008C58
|
||||
// (set) Token: 0x060018AB RID: 6315 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700057B")]
|
||||
public bool CheckCertificateName
|
||||
{
|
||||
[Token(Token = "0x60018AA")]
|
||||
[Address(RVA = "0xDD78C0", Offset = "0xDD68C0", VA = "0x180DD78C0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018AB")]
|
||||
[Address(RVA = "0xDD7A40", Offset = "0xDD6A40", VA = "0x180DD7A40")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that indicates whether the certificate is checked against the certificate authority revocation list.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the certificate revocation list is checked; otherwise, <see langword="false" />.The default value is <see langword="false" />.</returns>
|
||||
// Token: 0x1700057C RID: 1404
|
||||
// (get) Token: 0x060018AC RID: 6316 RVA: 0x0000AA70 File Offset: 0x00008C70
|
||||
// (set) Token: 0x060018AD RID: 6317 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700057C")]
|
||||
public bool CheckCertificateRevocationList
|
||||
{
|
||||
[Token(Token = "0x60018AC")]
|
||||
[Address(RVA = "0xDD78F0", Offset = "0xDD68F0", VA = "0x180DD78F0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018AD")]
|
||||
[Address(RVA = "0xDD7A70", Offset = "0xDD6A70", VA = "0x180DD7A70")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the amount of time after which address information is refreshed.</summary>
|
||||
/// <returns>A <see cref="T:System.TimeSpan" /> that specifies when addresses are resolved using DNS.</returns>
|
||||
// Token: 0x1700057D RID: 1405
|
||||
// (get) Token: 0x060018AE RID: 6318 RVA: 0x0000AA88 File Offset: 0x00008C88
|
||||
// (set) Token: 0x060018AF RID: 6319 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700057D")]
|
||||
public int DnsRefreshTimeout
|
||||
{
|
||||
[Token(Token = "0x60018AE")]
|
||||
[Address(RVA = "0xDD7920", Offset = "0xDD6920", VA = "0x180DD7920")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x60018AF")]
|
||||
[Address(RVA = "0xDD7AA0", Offset = "0xDD6AA0", VA = "0x180DD7AA0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that controls using different IP addresses on connections to the same server.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to enable DNS round-robin behavior; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700057E RID: 1406
|
||||
// (get) Token: 0x060018B0 RID: 6320 RVA: 0x0000AAA0 File Offset: 0x00008CA0
|
||||
// (set) Token: 0x060018B1 RID: 6321 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700057E")]
|
||||
public bool EnableDnsRoundRobin
|
||||
{
|
||||
[Token(Token = "0x60018B0")]
|
||||
[Address(RVA = "0xDD7950", Offset = "0xDD6950", VA = "0x180DD7950")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018B1")]
|
||||
[Address(RVA = "0xDD7AD0", Offset = "0xDD6AD0", VA = "0x180DD7AD0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the <see cref="T:System.Net.Security.EncryptionPolicy" /> to use.</summary>
|
||||
/// <returns>The encryption policy to use for a <see cref="T:System.Net.ServicePointManager" /> instance.</returns>
|
||||
// Token: 0x1700057F RID: 1407
|
||||
// (get) Token: 0x060018B2 RID: 6322 RVA: 0x0000AAB8 File Offset: 0x00008CB8
|
||||
// (set) Token: 0x060018B3 RID: 6323 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700057F")]
|
||||
public EncryptionPolicy EncryptionPolicy
|
||||
{
|
||||
[Token(Token = "0x60018B2")]
|
||||
[Address(RVA = "0xDD7980", Offset = "0xDD6980", VA = "0x180DD7980")]
|
||||
get
|
||||
{
|
||||
return EncryptionPolicy.RequireEncryption;
|
||||
}
|
||||
[Token(Token = "0x60018B3")]
|
||||
[Address(RVA = "0xDD7B00", Offset = "0xDD6B00", VA = "0x180DD7B00")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that determines whether 100-Continue behavior is used.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to expect 100-Continue responses for <see langword="POST" /> requests; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
|
||||
// Token: 0x17000580 RID: 1408
|
||||
// (get) Token: 0x060018B4 RID: 6324 RVA: 0x0000AAD0 File Offset: 0x00008CD0
|
||||
// (set) Token: 0x060018B5 RID: 6325 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000580")]
|
||||
public bool Expect100Continue
|
||||
{
|
||||
[Token(Token = "0x60018B4")]
|
||||
[Address(RVA = "0xDD79B0", Offset = "0xDD69B0", VA = "0x180DD79B0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018B5")]
|
||||
[Address(RVA = "0xDD7B30", Offset = "0xDD6B30", VA = "0x180DD7B30")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000581 RID: 1409
|
||||
// (get) Token: 0x060018B6 RID: 6326 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000581")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018B6")]
|
||||
[Address(RVA = "0xDD79E0", Offset = "0xDD69E0", VA = "0x180DD79E0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that determines whether the Nagle algorithm is used.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to use the Nagle algorithm; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
|
||||
// Token: 0x17000582 RID: 1410
|
||||
// (get) Token: 0x060018B7 RID: 6327 RVA: 0x0000AAE8 File Offset: 0x00008CE8
|
||||
// (set) Token: 0x060018B8 RID: 6328 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000582")]
|
||||
public bool UseNagleAlgorithm
|
||||
{
|
||||
[Token(Token = "0x60018B7")]
|
||||
[Address(RVA = "0xDD7A10", Offset = "0xDD6A10", VA = "0x180DD7A10")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018B8")]
|
||||
[Address(RVA = "0xDD7B60", Offset = "0xDD6B60", VA = "0x180DD7B60")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060018B9 RID: 6329 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018B9")]
|
||||
[Address(RVA = "0xDD7860", Offset = "0xDD6860", VA = "0x180DD7860", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the configuration section for sockets, IPv6, response headers, and service points. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A2 RID: 930
|
||||
[Token(Token = "0x20003A2")]
|
||||
public sealed class SettingsSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ConnectionManagementSection" /> class.</summary>
|
||||
// Token: 0x0600189B RID: 6299 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600189B")]
|
||||
[Address(RVA = "0xDD7C70", Offset = "0xDD6C70", VA = "0x180DD7C70")]
|
||||
public SettingsSection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls the settings used by an <see cref="T:System.Net.HttpListener" /> object.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.Configuration.HttpListenerElement" /> object.
|
||||
/// The configuration element that controls the settings used by an <see cref="T:System.Net.HttpListener" /> object.</returns>
|
||||
// Token: 0x17000570 RID: 1392
|
||||
// (get) Token: 0x0600189C RID: 6300 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000570")]
|
||||
public HttpListenerElement HttpListener
|
||||
{
|
||||
[Token(Token = "0x600189C")]
|
||||
[Address(RVA = "0xDD7CA0", Offset = "0xDD6CA0", VA = "0x180DD7CA0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls the settings used by an <see cref="T:System.Net.HttpWebRequest" /> object.</summary>
|
||||
/// <returns>The configuration element that controls the maximum response header length and other settings used by an <see cref="T:System.Net.HttpWebRequest" /> object.</returns>
|
||||
// Token: 0x17000571 RID: 1393
|
||||
// (get) Token: 0x0600189D RID: 6301 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000571")]
|
||||
public HttpWebRequestElement HttpWebRequest
|
||||
{
|
||||
[Token(Token = "0x600189D")]
|
||||
[Address(RVA = "0xDD7CD0", Offset = "0xDD6CD0", VA = "0x180DD7CD0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that enables Internet Protocol version 6 (IPv6).</summary>
|
||||
/// <returns>The configuration element that controls the setting used by IPv6.</returns>
|
||||
// Token: 0x17000572 RID: 1394
|
||||
// (get) Token: 0x0600189E RID: 6302 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000572")]
|
||||
public Ipv6Element Ipv6
|
||||
{
|
||||
[Token(Token = "0x600189E")]
|
||||
[Address(RVA = "0xDD7D00", Offset = "0xDD6D00", VA = "0x180DD7D00")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls whether network performance counters are enabled.</summary>
|
||||
/// <returns>The configuration element that controls usage of network performance counters.</returns>
|
||||
// Token: 0x17000573 RID: 1395
|
||||
// (get) Token: 0x0600189F RID: 6303 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000573")]
|
||||
public PerformanceCountersElement PerformanceCounters
|
||||
{
|
||||
[Token(Token = "0x600189F")]
|
||||
[Address(RVA = "0xDD7D30", Offset = "0xDD6D30", VA = "0x180DD7D30")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000574 RID: 1396
|
||||
// (get) Token: 0x060018A0 RID: 6304 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000574")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018A0")]
|
||||
[Address(RVA = "0xDD7D60", Offset = "0xDD6D60", VA = "0x180DD7D60", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls settings for connections to remote host computers.</summary>
|
||||
/// <returns>The configuration element that controls settings for connections to remote host computers.</returns>
|
||||
// Token: 0x17000575 RID: 1397
|
||||
// (get) Token: 0x060018A1 RID: 6305 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000575")]
|
||||
public ServicePointManagerElement ServicePointManager
|
||||
{
|
||||
[Token(Token = "0x60018A1")]
|
||||
[Address(RVA = "0xDD7D90", Offset = "0xDD6D90", VA = "0x180DD7D90")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls settings for sockets.</summary>
|
||||
/// <returns>The configuration element that controls settings for sockets.</returns>
|
||||
// Token: 0x17000576 RID: 1398
|
||||
// (get) Token: 0x060018A2 RID: 6306 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000576")]
|
||||
public SocketElement Socket
|
||||
{
|
||||
[Token(Token = "0x60018A2")]
|
||||
[Address(RVA = "0xDD7DC0", Offset = "0xDD6DC0", VA = "0x180DD7DC0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls the execution timeout and download timeout of Web proxy scripts.</summary>
|
||||
/// <returns>The configuration element that controls settings for the execution timeout and download timeout used by the Web proxy scripts.</returns>
|
||||
// Token: 0x17000577 RID: 1399
|
||||
// (get) Token: 0x060018A3 RID: 6307 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000577")]
|
||||
public WebProxyScriptElement WebProxyScript
|
||||
{
|
||||
[Token(Token = "0x60018A3")]
|
||||
[Address(RVA = "0xDD7DF0", Offset = "0xDD6DF0", VA = "0x180DD7DF0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls the settings used by an <see cref="T:System.Net.WebUtility" /> object.</summary>
|
||||
/// <returns>The configuration element that controls the settings used by a <see cref="T:System.Net.WebUtility" /> object.</returns>
|
||||
// Token: 0x17000578 RID: 1400
|
||||
// (get) Token: 0x060018A4 RID: 6308 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000578")]
|
||||
public WebUtilityElement WebUtility
|
||||
{
|
||||
[Token(Token = "0x60018A4")]
|
||||
[Address(RVA = "0xDD7E20", Offset = "0xDD6E20", VA = "0x180DD7E20")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,207 @@
|
||||
using System;
|
||||
using System.Net.Security;
|
||||
using System.Net.Sockets;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
// Token: 0x02000306 RID: 774
|
||||
[Token(Token = "0x2000306")]
|
||||
internal sealed class SettingsSectionInternal
|
||||
{
|
||||
// Token: 0x17000425 RID: 1061
|
||||
// (get) Token: 0x06001464 RID: 5220 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000425")]
|
||||
internal static SettingsSectionInternal Section
|
||||
{
|
||||
[Token(Token = "0x6001464")]
|
||||
[Address(RVA = "0xDD7C10", Offset = "0xDD6C10", VA = "0x180DD7C10")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000426 RID: 1062
|
||||
// (get) Token: 0x06001465 RID: 5221 RVA: 0x00009378 File Offset: 0x00007578
|
||||
// (set) Token: 0x06001466 RID: 5222 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000426")]
|
||||
internal bool UseNagleAlgorithm
|
||||
{
|
||||
[Token(Token = "0x6001465")]
|
||||
[Address(RVA = "0x497570", Offset = "0x496570", VA = "0x180497570")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001466")]
|
||||
[Address(RVA = "0x611070", Offset = "0x610070", VA = "0x180611070")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000427 RID: 1063
|
||||
// (get) Token: 0x06001467 RID: 5223 RVA: 0x00009390 File Offset: 0x00007590
|
||||
// (set) Token: 0x06001468 RID: 5224 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000427")]
|
||||
internal bool Expect100Continue
|
||||
{
|
||||
[Token(Token = "0x6001467")]
|
||||
[Address(RVA = "0x696850", Offset = "0x695850", VA = "0x180696850")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001468")]
|
||||
[Address(RVA = "0x69ADD0", Offset = "0x699DD0", VA = "0x18069ADD0")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000428 RID: 1064
|
||||
// (get) Token: 0x06001469 RID: 5225 RVA: 0x000093A8 File Offset: 0x000075A8
|
||||
// (set) Token: 0x0600146A RID: 5226 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000428")]
|
||||
internal bool CheckCertificateName
|
||||
{
|
||||
[Token(Token = "0x6001469")]
|
||||
[Address(RVA = "0x6A45D0", Offset = "0x6A35D0", VA = "0x1806A45D0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x600146A")]
|
||||
[Address(RVA = "0x6A4680", Offset = "0x6A3680", VA = "0x1806A4680")]
|
||||
[CompilerGenerated]
|
||||
private set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000429 RID: 1065
|
||||
// (get) Token: 0x0600146B RID: 5227 RVA: 0x000093C0 File Offset: 0x000075C0
|
||||
// (set) Token: 0x0600146C RID: 5228 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000429")]
|
||||
internal int DnsRefreshTimeout
|
||||
{
|
||||
[Token(Token = "0x600146B")]
|
||||
[Address(RVA = "0x497590", Offset = "0x496590", VA = "0x180497590")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x600146C")]
|
||||
[Address(RVA = "0x50A2B0", Offset = "0x5092B0", VA = "0x18050A2B0")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700042A RID: 1066
|
||||
// (get) Token: 0x0600146D RID: 5229 RVA: 0x000093D8 File Offset: 0x000075D8
|
||||
// (set) Token: 0x0600146E RID: 5230 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700042A")]
|
||||
internal bool EnableDnsRoundRobin
|
||||
{
|
||||
[Token(Token = "0x600146D")]
|
||||
[Address(RVA = "0x4700C0", Offset = "0x46F0C0", VA = "0x1804700C0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x600146E")]
|
||||
[Address(RVA = "0x65E580", Offset = "0x65D580", VA = "0x18065E580")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700042B RID: 1067
|
||||
// (get) Token: 0x0600146F RID: 5231 RVA: 0x000093F0 File Offset: 0x000075F0
|
||||
// (set) Token: 0x06001470 RID: 5232 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700042B")]
|
||||
internal bool CheckCertificateRevocationList
|
||||
{
|
||||
[Token(Token = "0x600146F")]
|
||||
[Address(RVA = "0x4700D0", Offset = "0x46F0D0", VA = "0x1804700D0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001470")]
|
||||
[Address(RVA = "0xABE6B0", Offset = "0xABD6B0", VA = "0x180ABE6B0")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700042C RID: 1068
|
||||
// (get) Token: 0x06001471 RID: 5233 RVA: 0x00009408 File Offset: 0x00007608
|
||||
// (set) Token: 0x06001472 RID: 5234 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700042C")]
|
||||
internal EncryptionPolicy EncryptionPolicy
|
||||
{
|
||||
[Token(Token = "0x6001471")]
|
||||
[Address(RVA = "0x470B60", Offset = "0x46FB60", VA = "0x180470B60")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return EncryptionPolicy.RequireEncryption;
|
||||
}
|
||||
[Token(Token = "0x6001472")]
|
||||
[Address(RVA = "0x5AC5B0", Offset = "0x5AB5B0", VA = "0x1805AC5B0")]
|
||||
[CompilerGenerated]
|
||||
private set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700042D RID: 1069
|
||||
// (get) Token: 0x06001473 RID: 5235 RVA: 0x00009420 File Offset: 0x00007620
|
||||
[Token(Token = "0x1700042D")]
|
||||
internal bool Ipv6Enabled
|
||||
{
|
||||
[Token(Token = "0x6001473")]
|
||||
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001474 RID: 5236 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001474")]
|
||||
[Address(RVA = "0xDD7BF0", Offset = "0xDD6BF0", VA = "0x180DD7BF0")]
|
||||
public SettingsSectionInternal()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000CFD RID: 3325
|
||||
[Token(Token = "0x4000CFD")]
|
||||
private static readonly SettingsSectionInternal instance;
|
||||
|
||||
// Token: 0x04000CFE RID: 3326
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000CFE")]
|
||||
internal readonly bool HttpListenerUnescapeRequestUrl;
|
||||
|
||||
// Token: 0x04000CFF RID: 3327
|
||||
[FieldOffset(Offset = "0x14")]
|
||||
[Token(Token = "0x4000CFF")]
|
||||
internal readonly IPProtectionLevel IPProtectionLevel;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,210 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the network element in the SMTP configuration file. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200039E RID: 926
|
||||
[Token(Token = "0x200039E")]
|
||||
public sealed class SmtpNetworkElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.SmtpNetworkElement" /> class.</summary>
|
||||
// Token: 0x0600186D RID: 6253 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600186D")]
|
||||
[Address(RVA = "0xDD7E80", Offset = "0xDD6E80", VA = "0x180DD7E80")]
|
||||
public SmtpNetworkElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the client domain name used in the initial SMTP protocol request to connect to an SMTP mail server.</summary>
|
||||
/// <returns>A string that represents the client domain name used in the initial SMTP protocol request to connect to an SMTP mail server.</returns>
|
||||
// Token: 0x17000557 RID: 1367
|
||||
// (get) Token: 0x0600186E RID: 6254 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600186F RID: 6255 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000557")]
|
||||
public string ClientDomain
|
||||
{
|
||||
[Token(Token = "0x600186E")]
|
||||
[Address(RVA = "0xDD7EB0", Offset = "0xDD6EB0", VA = "0x180DD7EB0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600186F")]
|
||||
[Address(RVA = "0xDD8060", Offset = "0xDD7060", VA = "0x180DD8060")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Determines whether or not default user credentials are used to access an SMTP server. The default value is <see langword="false" />.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> indicates that default user credentials will be used to access the SMTP server; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000558 RID: 1368
|
||||
// (get) Token: 0x06001870 RID: 6256 RVA: 0x0000A998 File Offset: 0x00008B98
|
||||
// (set) Token: 0x06001871 RID: 6257 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000558")]
|
||||
public bool DefaultCredentials
|
||||
{
|
||||
[Token(Token = "0x6001870")]
|
||||
[Address(RVA = "0xDD7EE0", Offset = "0xDD6EE0", VA = "0x180DD7EE0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001871")]
|
||||
[Address(RVA = "0xDD8090", Offset = "0xDD7090", VA = "0x180DD8090")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets whether SSL is used to access an SMTP mail server. The default value is <see langword="false" />.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> indicates that SSL will be used to access the SMTP mail server; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000559 RID: 1369
|
||||
// (get) Token: 0x06001872 RID: 6258 RVA: 0x0000A9B0 File Offset: 0x00008BB0
|
||||
// (set) Token: 0x06001873 RID: 6259 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000559")]
|
||||
public bool EnableSsl
|
||||
{
|
||||
[Token(Token = "0x6001872")]
|
||||
[Address(RVA = "0xDD7F10", Offset = "0xDD6F10", VA = "0x180DD7F10")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6001873")]
|
||||
[Address(RVA = "0xDD80C0", Offset = "0xDD70C0", VA = "0x180DD80C0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the name of the SMTP server.</summary>
|
||||
/// <returns>A string that represents the name of the SMTP server to connect to.</returns>
|
||||
// Token: 0x1700055A RID: 1370
|
||||
// (get) Token: 0x06001874 RID: 6260 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001875 RID: 6261 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700055A")]
|
||||
public string Host
|
||||
{
|
||||
[Token(Token = "0x6001874")]
|
||||
[Address(RVA = "0xDD7F40", Offset = "0xDD6F40", VA = "0x180DD7F40")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001875")]
|
||||
[Address(RVA = "0xDD80F0", Offset = "0xDD70F0", VA = "0x180DD80F0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the user password to use to connect to an SMTP mail server.</summary>
|
||||
/// <returns>A string that represents the password to use to connect to an SMTP mail server.</returns>
|
||||
// Token: 0x1700055B RID: 1371
|
||||
// (get) Token: 0x06001876 RID: 6262 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001877 RID: 6263 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700055B")]
|
||||
public string Password
|
||||
{
|
||||
[Token(Token = "0x6001876")]
|
||||
[Address(RVA = "0xDD7F70", Offset = "0xDD6F70", VA = "0x180DD7F70")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001877")]
|
||||
[Address(RVA = "0xDD8120", Offset = "0xDD7120", VA = "0x180DD8120")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the port that SMTP clients use to connect to an SMTP mail server. The default value is 25.</summary>
|
||||
/// <returns>A string that represents the port to connect to an SMTP mail server.</returns>
|
||||
// Token: 0x1700055C RID: 1372
|
||||
// (get) Token: 0x06001878 RID: 6264 RVA: 0x0000A9C8 File Offset: 0x00008BC8
|
||||
// (set) Token: 0x06001879 RID: 6265 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700055C")]
|
||||
public int Port
|
||||
{
|
||||
[Token(Token = "0x6001878")]
|
||||
[Address(RVA = "0xDD7FA0", Offset = "0xDD6FA0", VA = "0x180DD7FA0")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6001879")]
|
||||
[Address(RVA = "0xDD8150", Offset = "0xDD7150", VA = "0x180DD8150")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700055D RID: 1373
|
||||
// (get) Token: 0x0600187A RID: 6266 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700055D")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600187A")]
|
||||
[Address(RVA = "0xDD7FD0", Offset = "0xDD6FD0", VA = "0x180DD7FD0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the Service Provider Name (SPN) to use for authentication when using extended protection to connect to an SMTP mail server.</summary>
|
||||
/// <returns>A string that represents the SPN to use for authentication when using extended protection to connect to an SMTP mail server.</returns>
|
||||
// Token: 0x1700055E RID: 1374
|
||||
// (get) Token: 0x0600187B RID: 6267 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600187C RID: 6268 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700055E")]
|
||||
public string TargetName
|
||||
{
|
||||
[Token(Token = "0x600187B")]
|
||||
[Address(RVA = "0xDD8000", Offset = "0xDD7000", VA = "0x180DD8000")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600187C")]
|
||||
[Address(RVA = "0xDD8180", Offset = "0xDD7180", VA = "0x180DD8180")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the user name to connect to an SMTP mail server.</summary>
|
||||
/// <returns>A string that represents the user name to connect to an SMTP mail server.</returns>
|
||||
// Token: 0x1700055F RID: 1375
|
||||
// (get) Token: 0x0600187D RID: 6269 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x0600187E RID: 6270 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700055F")]
|
||||
public string UserName
|
||||
{
|
||||
[Token(Token = "0x600187D")]
|
||||
[Address(RVA = "0xDD8030", Offset = "0xDD7030", VA = "0x180DD8030")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x600187E")]
|
||||
[Address(RVA = "0xDD81B0", Offset = "0xDD71B0", VA = "0x180DD81B0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600187F RID: 6271 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600187F")]
|
||||
[Address(RVA = "0xDD7E50", Offset = "0xDD6E50", VA = "0x180DD7E50", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using System.Net.Mail;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the SMTP section in the <see langword="System.Net" /> configuration file.</summary>
|
||||
// Token: 0x0200039D RID: 925
|
||||
[Token(Token = "0x200039D")]
|
||||
public sealed class SmtpSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.SmtpSection" /> class.</summary>
|
||||
// Token: 0x06001863 RID: 6243 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001863")]
|
||||
[Address(RVA = "0xDD81E0", Offset = "0xDD71E0", VA = "0x180DD81E0")]
|
||||
public SmtpSection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the delivery format to use for sending outgoing email using the Simple Mail Transport Protocol (SMTP).</summary>
|
||||
/// <returns>Returns <see cref="T:System.Net.Mail.SmtpDeliveryFormat" />.
|
||||
/// The delivery format to use for sending outgoing email using SMTP.</returns>
|
||||
// Token: 0x17000551 RID: 1361
|
||||
// (get) Token: 0x06001864 RID: 6244 RVA: 0x0000A968 File Offset: 0x00008B68
|
||||
// (set) Token: 0x06001865 RID: 6245 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000551")]
|
||||
public SmtpDeliveryFormat DeliveryFormat
|
||||
{
|
||||
[Token(Token = "0x6001864")]
|
||||
[Address(RVA = "0xDD8210", Offset = "0xDD7210", VA = "0x180DD8210")]
|
||||
get
|
||||
{
|
||||
return SmtpDeliveryFormat.SevenBit;
|
||||
}
|
||||
[Token(Token = "0x6001865")]
|
||||
[Address(RVA = "0xDD8330", Offset = "0xDD7330", VA = "0x180DD8330")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the Simple Mail Transport Protocol (SMTP) delivery method. The default delivery method is <see cref="F:System.Net.Mail.SmtpDeliveryMethod.Network" />.</summary>
|
||||
/// <returns>A string that represents the SMTP delivery method.</returns>
|
||||
// Token: 0x17000552 RID: 1362
|
||||
// (get) Token: 0x06001866 RID: 6246 RVA: 0x0000A980 File Offset: 0x00008B80
|
||||
// (set) Token: 0x06001867 RID: 6247 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000552")]
|
||||
public SmtpDeliveryMethod DeliveryMethod
|
||||
{
|
||||
[Token(Token = "0x6001866")]
|
||||
[Address(RVA = "0xDD8240", Offset = "0xDD7240", VA = "0x180DD8240")]
|
||||
get
|
||||
{
|
||||
return SmtpDeliveryMethod.Network;
|
||||
}
|
||||
[Token(Token = "0x6001867")]
|
||||
[Address(RVA = "0xDD8360", Offset = "0xDD7360", VA = "0x180DD8360")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the default value that indicates who the email message is from.</summary>
|
||||
/// <returns>A string that represents the default value indicating who a mail message is from.</returns>
|
||||
// Token: 0x17000553 RID: 1363
|
||||
// (get) Token: 0x06001868 RID: 6248 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001869 RID: 6249 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000553")]
|
||||
public string From
|
||||
{
|
||||
[Token(Token = "0x6001868")]
|
||||
[Address(RVA = "0xDD8270", Offset = "0xDD7270", VA = "0x180DD8270")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001869")]
|
||||
[Address(RVA = "0xDD8390", Offset = "0xDD7390", VA = "0x180DD8390")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the configuration element that controls the network settings used by the Simple Mail Transport Protocol (SMTP). file.<see cref="T:System.Net.Configuration.SmtpNetworkElement" />.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.SmtpNetworkElement" /> object.
|
||||
/// The configuration element that controls the network settings used by SMTP.</returns>
|
||||
// Token: 0x17000554 RID: 1364
|
||||
// (get) Token: 0x0600186A RID: 6250 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000554")]
|
||||
public SmtpNetworkElement Network
|
||||
{
|
||||
[Token(Token = "0x600186A")]
|
||||
[Address(RVA = "0xDD82A0", Offset = "0xDD72A0", VA = "0x180DD82A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000555 RID: 1365
|
||||
// (get) Token: 0x0600186B RID: 6251 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000555")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x600186B")]
|
||||
[Address(RVA = "0xDD82D0", Offset = "0xDD72D0", VA = "0x180DD82D0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the pickup directory that will be used by the SMPT client.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.SmtpSpecifiedPickupDirectoryElement" /> object that specifies the pickup directory folder.</returns>
|
||||
// Token: 0x17000556 RID: 1366
|
||||
// (get) Token: 0x0600186C RID: 6252 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000556")]
|
||||
public SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory
|
||||
{
|
||||
[Token(Token = "0x600186C")]
|
||||
[Address(RVA = "0xDD8300", Offset = "0xDD7300", VA = "0x180DD8300")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents an SMTP pickup directory configuration element.</summary>
|
||||
// Token: 0x0200039F RID: 927
|
||||
[Token(Token = "0x200039F")]
|
||||
public sealed class SmtpSpecifiedPickupDirectoryElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.SmtpSpecifiedPickupDirectoryElement" /> class.</summary>
|
||||
// Token: 0x06001880 RID: 6272 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001880")]
|
||||
[Address(RVA = "0xDD83C0", Offset = "0xDD73C0", VA = "0x180DD83C0")]
|
||||
public SmtpSpecifiedPickupDirectoryElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the folder where applications save mail messages to be processed by the SMTP server.</summary>
|
||||
/// <returns>A string that specifies the pickup directory for email messages.</returns>
|
||||
// Token: 0x17000560 RID: 1376
|
||||
// (get) Token: 0x06001881 RID: 6273 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001882 RID: 6274 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000560")]
|
||||
public string PickupDirectoryLocation
|
||||
{
|
||||
[Token(Token = "0x6001881")]
|
||||
[Address(RVA = "0xDD83F0", Offset = "0xDD73F0", VA = "0x180DD83F0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001882")]
|
||||
[Address(RVA = "0xDD8450", Offset = "0xDD7450", VA = "0x180DD8450")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000561 RID: 1377
|
||||
// (get) Token: 0x06001883 RID: 6275 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000561")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x6001883")]
|
||||
[Address(RVA = "0xDD8420", Offset = "0xDD7420", VA = "0x180DD8420", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,106 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using System.Net.Sockets;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents information used to configure <see cref="T:System.Net.Sockets.Socket" /> objects. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A5 RID: 933
|
||||
[Token(Token = "0x20003A5")]
|
||||
public sealed class SocketElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.SocketElement" /> class.</summary>
|
||||
// Token: 0x060018BA RID: 6330 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018BA")]
|
||||
[Address(RVA = "0xDD84B0", Offset = "0xDD74B0", VA = "0x180DD84B0")]
|
||||
public SocketElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that specifies whether completion ports are used when accepting connections.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to use completion ports; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000583 RID: 1411
|
||||
// (get) Token: 0x060018BB RID: 6331 RVA: 0x0000AB00 File Offset: 0x00008D00
|
||||
// (set) Token: 0x060018BC RID: 6332 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000583")]
|
||||
public bool AlwaysUseCompletionPortsForAccept
|
||||
{
|
||||
[Token(Token = "0x60018BB")]
|
||||
[Address(RVA = "0xDD84E0", Offset = "0xDD74E0", VA = "0x180DD84E0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018BC")]
|
||||
[Address(RVA = "0xDD85A0", Offset = "0xDD75A0", VA = "0x180DD85A0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a Boolean value that specifies whether completion ports are used when making connections.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to use completion ports; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x17000584 RID: 1412
|
||||
// (get) Token: 0x060018BD RID: 6333 RVA: 0x0000AB18 File Offset: 0x00008D18
|
||||
// (set) Token: 0x060018BE RID: 6334 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000584")]
|
||||
public bool AlwaysUseCompletionPortsForConnect
|
||||
{
|
||||
[Token(Token = "0x60018BD")]
|
||||
[Address(RVA = "0xDD8510", Offset = "0xDD7510", VA = "0x180DD8510")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60018BE")]
|
||||
[Address(RVA = "0xDD85D0", Offset = "0xDD75D0", VA = "0x180DD85D0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that specifies the default <see cref="T:System.Net.Sockets.IPProtectionLevel" /> to use for a socket.</summary>
|
||||
/// <returns>The value of the <see cref="T:System.Net.Sockets.IPProtectionLevel" /> for the current instance.</returns>
|
||||
// Token: 0x17000585 RID: 1413
|
||||
// (get) Token: 0x060018BF RID: 6335 RVA: 0x0000AB30 File Offset: 0x00008D30
|
||||
// (set) Token: 0x060018C0 RID: 6336 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000585")]
|
||||
public IPProtectionLevel IPProtectionLevel
|
||||
{
|
||||
[Token(Token = "0x60018BF")]
|
||||
[Address(RVA = "0xDD8540", Offset = "0xDD7540", VA = "0x180DD8540")]
|
||||
get
|
||||
{
|
||||
return (IPProtectionLevel)0;
|
||||
}
|
||||
[Token(Token = "0x60018C0")]
|
||||
[Address(RVA = "0xDD8600", Offset = "0xDD7600", VA = "0x180DD8600")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000586 RID: 1414
|
||||
// (get) Token: 0x060018C1 RID: 6337 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000586")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018C1")]
|
||||
[Address(RVA = "0xDD8570", Offset = "0xDD7570", VA = "0x180DD8570", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060018C2 RID: 6338 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018C2")]
|
||||
[Address(RVA = "0xDD8480", Offset = "0xDD7480", VA = "0x180DD8480", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Controls how Unicode characters are interpreted by the <see cref="Overload:System.Net.WebUtility.HtmlDecode" /> methods.</summary>
|
||||
// Token: 0x02000304 RID: 772
|
||||
[Token(Token = "0x2000304")]
|
||||
public enum UnicodeDecodingConformance
|
||||
{
|
||||
/// <summary>Use automatic behavior. The decoding behavior is determined by current application's target Framework. For .NET Framework 4.5 and later, the Unicode encoding decoding is strict.</summary>
|
||||
// Token: 0x04000CF5 RID: 3317
|
||||
[Token(Token = "0x4000CF5")]
|
||||
Auto,
|
||||
/// <summary>Use strict behavior. Specifies that the incoming encoded data is checked for validity before being decoded. For example, an input string of "&#144308;" would decode as U+233B4, but an input string of "&#xD84C;&#xDFB4;" would fail to decode properly. Already-decoded data in the string is not checked for validity. For example, an input string of "\ud800" will result in an output string of "\ud800", as the already-decoded surrogate is skipped during decoding, even though it is unpaired.</summary>
|
||||
// Token: 0x04000CF6 RID: 3318
|
||||
[Token(Token = "0x4000CF6")]
|
||||
Strict,
|
||||
/// <summary>Use compatible behavior. Specifies that incoming data is not checked for validity before being decoded. For example, an input string of "&amp;#xD84C;" would decode as U+D84C, which is an unpaired surrogate. Additionally, the decoder does not understand code points in the SMP unless they're represented as HTML-encoded surrogates, so the inputstring "&#144308;" would result in the output string "&#144308;".</summary>
|
||||
// Token: 0x04000CF7 RID: 3319
|
||||
[Token(Token = "0x4000CF7")]
|
||||
Compat,
|
||||
/// <summary>Use loose behavior. Similar to <see cref="F:System.Net.Configuration.UnicodeDecodingConformance.Compat" /> in that there are no validity checks, but the decoder also understands code points. The input string "&#144308;" would decode into the character U+233B4 correctly. This switch is meant to provide maximum interoperability when the decoder doesn't know which format the provider is using to generate the encoded string.</summary>
|
||||
// Token: 0x04000CF8 RID: 3320
|
||||
[Token(Token = "0x4000CF8")]
|
||||
Loose
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Controls how Unicode characters are output by the <see cref="Overload:System.Net.WebUtility.HtmlEncode" /> methods.</summary>
|
||||
// Token: 0x02000305 RID: 773
|
||||
[Token(Token = "0x2000305")]
|
||||
public enum UnicodeEncodingConformance
|
||||
{
|
||||
/// <summary>Use automatic behavior. The Unicode encoding behavior is determined by current application's target Framework. For .NET Framework 4.5 and later, the Unicode encoding behavior is strict.</summary>
|
||||
// Token: 0x04000CFA RID: 3322
|
||||
[Token(Token = "0x4000CFA")]
|
||||
Auto,
|
||||
/// <summary>Use strict behavior. Specifies that individual UTF-16 surrogate code points are combined into a single code point when one of the <see cref="Overload:System.Net.WebUtility.HtmlEncode" /> methods is called. For example, given the input string "\uD84C\uDFB4" (or "\U000233B4"), the output of the <see cref="Overload:System.Net.WebUtility.HtmlEncode" /> methods is "&#144308;".
|
||||
/// If the input is a malformed UTF-16 string (it contains unpaired surrogates, for example), the bad code points will be replaced with U+FFFD (Unicode replacement char) before being HTML-encoded.</summary>
|
||||
// Token: 0x04000CFB RID: 3323
|
||||
[Token(Token = "0x4000CFB")]
|
||||
Strict,
|
||||
/// <summary>Use compatible behavior. Specifies that individual UTF-16 surrogate code points are output as-is when one of <see cref="Overload:System.Net.WebUtility.HtmlEncode" /> methods is called. For example, given a string "\uD84C\uDFB4" (or "\U000233B4"), the output of <see cref="Overload:System.Net.WebUtility.HtmlEncode" /> is "\uD84C\uDFB4" (the input is not encoded).</summary>
|
||||
// Token: 0x04000CFC RID: 3324
|
||||
[Token(Token = "0x4000CFC")]
|
||||
Compat
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents information used to configure Web proxy scripts. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A6 RID: 934
|
||||
[Token(Token = "0x20003A6")]
|
||||
public sealed class WebProxyScriptElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes an instance of the <see cref="T:System.Net.Configuration.WebProxyScriptElement" /> class.</summary>
|
||||
// Token: 0x060018C3 RID: 6339 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018C3")]
|
||||
[Address(RVA = "0xDD8710", Offset = "0xDD7710", VA = "0x180DD8710")]
|
||||
public WebProxyScriptElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the Web proxy script download timeout using the format hours:minutes:seconds.</summary>
|
||||
/// <returns>A <see cref="T:System.TimeSpan" /> object that contains the timeout value. The default download timeout is one minute.</returns>
|
||||
// Token: 0x17000587 RID: 1415
|
||||
// (get) Token: 0x060018C4 RID: 6340 RVA: 0x0000AB48 File Offset: 0x00008D48
|
||||
// (set) Token: 0x060018C5 RID: 6341 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000587")]
|
||||
public TimeSpan DownloadTimeout
|
||||
{
|
||||
[Token(Token = "0x60018C4")]
|
||||
[Address(RVA = "0xDD8740", Offset = "0xDD7740", VA = "0x180DD8740")]
|
||||
get
|
||||
{
|
||||
return default(TimeSpan);
|
||||
}
|
||||
[Token(Token = "0x60018C5")]
|
||||
[Address(RVA = "0xDD87A0", Offset = "0xDD77A0", VA = "0x180DD87A0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000588 RID: 1416
|
||||
// (get) Token: 0x060018C6 RID: 6342 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000588")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018C6")]
|
||||
[Address(RVA = "0xDD8770", Offset = "0xDD7770", VA = "0x180DD8770", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060018C7 RID: 6343 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018C7")]
|
||||
[Address(RVA = "0xDD86E0", Offset = "0xDD76E0", VA = "0x180DD86E0", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents a URI prefix and the associated class that handles creating Web requests for the prefix. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003AA RID: 938
|
||||
[Token(Token = "0x20003AA")]
|
||||
public sealed class WebRequestModuleElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> class.</summary>
|
||||
// Token: 0x060018E0 RID: 6368 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018E0")]
|
||||
[Address(RVA = "0xDD8A40", Offset = "0xDD7A40", VA = "0x180DD8A40")]
|
||||
public WebRequestModuleElement()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> class using the specified URI prefix and type information.</summary>
|
||||
/// <param name="prefix">A string containing a URI prefix.</param>
|
||||
/// <param name="type">A string containing the type and assembly information for the class that handles creating requests for resources that use the <paramref name="prefix" /> URI prefix.</param>
|
||||
// Token: 0x060018E1 RID: 6369 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018E1")]
|
||||
[Address(RVA = "0xDD8AA0", Offset = "0xDD7AA0", VA = "0x180DD8AA0")]
|
||||
public WebRequestModuleElement(string prefix, string type)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> class using the specified URI prefix and type identifier.</summary>
|
||||
/// <param name="prefix">A string containing a URI prefix.</param>
|
||||
/// <param name="type">A <see cref="T:System.Type" /> that identifies the class that handles creating requests for resources that use the <paramref name="prefix" /> URI prefix.</param>
|
||||
// Token: 0x060018E2 RID: 6370 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018E2")]
|
||||
[Address(RVA = "0xDD8A70", Offset = "0xDD7A70", VA = "0x180DD8A70")]
|
||||
public WebRequestModuleElement(string prefix, Type type)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the URI prefix for the current Web request module.</summary>
|
||||
/// <returns>A string that contains a URI prefix.</returns>
|
||||
// Token: 0x1700058F RID: 1423
|
||||
// (get) Token: 0x060018E3 RID: 6371 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060018E4 RID: 6372 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700058F")]
|
||||
public string Prefix
|
||||
{
|
||||
[Token(Token = "0x60018E3")]
|
||||
[Address(RVA = "0xDD8AD0", Offset = "0xDD7AD0", VA = "0x180DD8AD0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60018E4")]
|
||||
[Address(RVA = "0xDD8B60", Offset = "0xDD7B60", VA = "0x180DD8B60")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000590 RID: 1424
|
||||
// (get) Token: 0x060018E5 RID: 6373 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000590")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018E5")]
|
||||
[Address(RVA = "0xDD8B00", Offset = "0xDD7B00", VA = "0x180DD8B00", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a class that creates Web requests.</summary>
|
||||
/// <returns>A <see cref="T:System.Type" /> instance that identifies a Web request module.</returns>
|
||||
// Token: 0x17000591 RID: 1425
|
||||
// (get) Token: 0x060018E6 RID: 6374 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060018E7 RID: 6375 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000591")]
|
||||
public Type Type
|
||||
{
|
||||
[Token(Token = "0x60018E6")]
|
||||
[Address(RVA = "0xDD8B30", Offset = "0xDD7B30", VA = "0x180DD8B30")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60018E7")]
|
||||
[Address(RVA = "0xDD8B90", Offset = "0xDD7B90", VA = "0x180DD8B90")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents a container for Web request module configuration elements. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A9 RID: 937
|
||||
[Token(Token = "0x20003A9")]
|
||||
[ConfigurationCollection(typeof(WebRequestModuleElement))]
|
||||
public sealed class WebRequestModuleElementCollection : ConfigurationElementCollection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElementCollection" /> class.</summary>
|
||||
// Token: 0x060018D3 RID: 6355 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018D3")]
|
||||
[Address(RVA = "0xDD8950", Offset = "0xDD7950", VA = "0x180DD8950")]
|
||||
public WebRequestModuleElementCollection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060018D4 RID: 6356 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60018D4")]
|
||||
[Address(RVA = "0xDD89B0", Offset = "0xDD79B0", VA = "0x180DD89B0")]
|
||||
public WebRequestModuleElement get_Item(int index)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060018D5 RID: 6357 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018D5")]
|
||||
[Address(RVA = "0xDD8A10", Offset = "0xDD7A10", VA = "0x180DD8A10")]
|
||||
public void set_Item(int index, WebRequestModuleElement value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the element with the specified key.</summary>
|
||||
/// <param name="name">The key for an element in the collection.</param>
|
||||
/// <returns>The <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> with the specified key or <see langword="null" /> if there is no element with the specified key.</returns>
|
||||
// Token: 0x1700058E RID: 1422
|
||||
[Token(Token = "0x1700058E")]
|
||||
public WebRequestModuleElement this[string name]
|
||||
{
|
||||
[Token(Token = "0x60018D6")]
|
||||
[Address(RVA = "0xDD8980", Offset = "0xDD7980", VA = "0x180DD8980")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60018D7")]
|
||||
[Address(RVA = "0xDD89E0", Offset = "0xDD79E0", VA = "0x180DD89E0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds an element to the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> to add to the collection.</param>
|
||||
// Token: 0x060018D8 RID: 6360 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018D8")]
|
||||
[Address(RVA = "0xDD87D0", Offset = "0xDD77D0", VA = "0x180DD87D0")]
|
||||
public void Add(WebRequestModuleElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes all elements from the collection.</summary>
|
||||
// Token: 0x060018D9 RID: 6361 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018D9")]
|
||||
[Address(RVA = "0xDD8800", Offset = "0xDD7800", VA = "0x180DD8800")]
|
||||
public void Clear()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060018DA RID: 6362 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60018DA")]
|
||||
[Address(RVA = "0xDD8830", Offset = "0xDD7830", VA = "0x180DD8830", Slot = "16")]
|
||||
protected override ConfigurationElement CreateNewElement()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060018DB RID: 6363 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60018DB")]
|
||||
[Address(RVA = "0xDD8860", Offset = "0xDD7860", VA = "0x180DD8860", Slot = "17")]
|
||||
protected override object GetElementKey(ConfigurationElement element)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the index of the specified configuration element.</summary>
|
||||
/// <param name="element">A <see cref="T:System.Net.Configuration.WebRequestModuleElement" />.</param>
|
||||
/// <returns>The zero-based index of <paramref name="element" />.</returns>
|
||||
// Token: 0x060018DC RID: 6364 RVA: 0x0000AB90 File Offset: 0x00008D90
|
||||
[Token(Token = "0x60018DC")]
|
||||
[Address(RVA = "0xDD8890", Offset = "0xDD7890", VA = "0x180DD8890")]
|
||||
public int IndexOf(WebRequestModuleElement element)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Removes the specified configuration element from the collection.</summary>
|
||||
/// <param name="element">The <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> to remove.</param>
|
||||
// Token: 0x060018DD RID: 6365 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018DD")]
|
||||
[Address(RVA = "0xDD8920", Offset = "0xDD7920", VA = "0x180DD8920")]
|
||||
public void Remove(WebRequestModuleElement element)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element with the specified key.</summary>
|
||||
/// <param name="name">The key of the element to remove.</param>
|
||||
// Token: 0x060018DE RID: 6366 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018DE")]
|
||||
[Address(RVA = "0xDD88F0", Offset = "0xDD78F0", VA = "0x180DD88F0")]
|
||||
public void Remove(string name)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the element at the specified index.</summary>
|
||||
/// <param name="index">The zero-based index of the element to remove.</param>
|
||||
// Token: 0x060018DF RID: 6367 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018DF")]
|
||||
[Address(RVA = "0xDD88C0", Offset = "0xDD78C0", VA = "0x180DD88C0")]
|
||||
public void RemoveAt(int index)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the configuration section for Web request modules. This class cannot be inherited.</summary>
|
||||
// Token: 0x020003A8 RID: 936
|
||||
[Token(Token = "0x20003A8")]
|
||||
public sealed class WebRequestModulesSection : ConfigurationSection
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModulesSection" /> class.</summary>
|
||||
// Token: 0x060018CE RID: 6350 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018CE")]
|
||||
[Address(RVA = "0xDD8C20", Offset = "0xDD7C20", VA = "0x180DD8C20")]
|
||||
public WebRequestModulesSection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700058C RID: 1420
|
||||
// (get) Token: 0x060018CF RID: 6351 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700058C")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018CF")]
|
||||
[Address(RVA = "0xDD8C50", Offset = "0xDD7C50", VA = "0x180DD8C50", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of Web request modules in the section.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Configuration.WebRequestModuleElementCollection" /> containing the registered Web request modules.</returns>
|
||||
// Token: 0x1700058D RID: 1421
|
||||
// (get) Token: 0x060018D0 RID: 6352 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700058D")]
|
||||
public WebRequestModuleElementCollection WebRequestModules
|
||||
{
|
||||
[Token(Token = "0x60018D0")]
|
||||
[Address(RVA = "0xDD8C80", Offset = "0xDD7C80", VA = "0x180DD8C80")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060018D1 RID: 6353 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018D1")]
|
||||
[Address(RVA = "0xDD8BC0", Offset = "0xDD7BC0", VA = "0x180DD8BC0", Slot = "6")]
|
||||
protected override void InitializeDefault()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060018D2 RID: 6354 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018D2")]
|
||||
[Address(RVA = "0xDD8BF0", Offset = "0xDD7BF0", VA = "0x180DD8BF0", Slot = "8")]
|
||||
protected override void PostDeserialize()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using System.Configuration;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Configuration
|
||||
{
|
||||
/// <summary>Represents the WebUtility element in the configuration file.</summary>
|
||||
// Token: 0x020003A7 RID: 935
|
||||
[Token(Token = "0x20003A7")]
|
||||
public sealed class WebUtilityElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebUtilityElement" /> class.</summary>
|
||||
// Token: 0x060018C8 RID: 6344 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018C8")]
|
||||
[Address(RVA = "0xDD8CB0", Offset = "0xDD7CB0", VA = "0x180DD8CB0")]
|
||||
public WebUtilityElement()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17000589 RID: 1417
|
||||
// (get) Token: 0x060018C9 RID: 6345 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000589")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018C9")]
|
||||
[Address(RVA = "0xDD8CE0", Offset = "0xDD7CE0", VA = "0x180DD8CE0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the default Unicode decoding conformance behavior used for an <see cref="T:System.Net.WebUtility" /> object.</summary>
|
||||
/// <returns>Returns <see cref="T:System.Net.Configuration.UnicodeDecodingConformance" />.
|
||||
/// The default Unicode decoding behavior.</returns>
|
||||
// Token: 0x1700058A RID: 1418
|
||||
// (get) Token: 0x060018CA RID: 6346 RVA: 0x0000AB60 File Offset: 0x00008D60
|
||||
// (set) Token: 0x060018CB RID: 6347 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700058A")]
|
||||
public UnicodeDecodingConformance UnicodeDecodingConformance
|
||||
{
|
||||
[Token(Token = "0x60018CA")]
|
||||
[Address(RVA = "0xDD8D10", Offset = "0xDD7D10", VA = "0x180DD8D10")]
|
||||
get
|
||||
{
|
||||
return UnicodeDecodingConformance.Auto;
|
||||
}
|
||||
[Token(Token = "0x60018CB")]
|
||||
[Address(RVA = "0xDD8D70", Offset = "0xDD7D70", VA = "0x180DD8D70")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the default Unicode encoding conformance behavior used for an <see cref="T:System.Net.WebUtility" /> object.</summary>
|
||||
/// <returns>Returns <see cref="T:System.Net.Configuration.UnicodeEncodingConformance" />.
|
||||
/// The default Unicode encoding behavior.</returns>
|
||||
// Token: 0x1700058B RID: 1419
|
||||
// (get) Token: 0x060018CC RID: 6348 RVA: 0x0000AB78 File Offset: 0x00008D78
|
||||
// (set) Token: 0x060018CD RID: 6349 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700058B")]
|
||||
public UnicodeEncodingConformance UnicodeEncodingConformance
|
||||
{
|
||||
[Token(Token = "0x60018CC")]
|
||||
[Address(RVA = "0xDD8D40", Offset = "0xDD7D40", VA = "0x180DD8D40")]
|
||||
get
|
||||
{
|
||||
return UnicodeEncodingConformance.Auto;
|
||||
}
|
||||
[Token(Token = "0x60018CD")]
|
||||
[Address(RVA = "0xDD8DA0", Offset = "0xDD7DA0", VA = "0x180DD8DA0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user