m
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Manages the authentication modules called during the client authentication process.</summary>
|
||||
// Token: 0x0200027B RID: 635
|
||||
[Token(Token = "0x200027B")]
|
||||
public class AuthenticationManager
|
||||
{
|
||||
// Token: 0x06000FF6 RID: 4086 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000FF6")]
|
||||
[Address(RVA = "0xDC3900", Offset = "0xDC2900", VA = "0x180DC3900")]
|
||||
private static void EnsureModules()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Calls each registered authentication module to find the first module that can respond to the authentication request.</summary>
|
||||
/// <param name="challenge">The challenge returned by the Internet resource.</param>
|
||||
/// <param name="request">The <see cref="T:System.Net.WebRequest" /> that initiated the authentication challenge.</param>
|
||||
/// <param name="credentials">The <see cref="T:System.Net.ICredentials" /> associated with this request.</param>
|
||||
/// <returns>An instance of the <see cref="T:System.Net.Authorization" /> class containing the result of the authorization attempt. If there is no authentication module to respond to the challenge, this method returns <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="challenge" /> is <see langword="null" />.
|
||||
/// -or-
|
||||
/// <paramref name="request" /> is <see langword="null" />.
|
||||
/// -or-
|
||||
/// <paramref name="credentials" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06000FF7 RID: 4087 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FF7")]
|
||||
[Address(RVA = "0xDC34B0", Offset = "0xDC24B0", VA = "0x180DC34B0")]
|
||||
public static Authorization Authenticate(string challenge, WebRequest request, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FF8 RID: 4088 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FF8")]
|
||||
[Address(RVA = "0xDC35D0", Offset = "0xDC25D0", VA = "0x180DC35D0")]
|
||||
private static Authorization DoAuthenticate(string challenge, WebRequest request, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Preauthenticates a request.</summary>
|
||||
/// <param name="request">A <see cref="T:System.Net.WebRequest" /> to an Internet resource.</param>
|
||||
/// <param name="credentials">The <see cref="T:System.Net.ICredentials" /> associated with the request.</param>
|
||||
/// <returns>An instance of the <see cref="T:System.Net.Authorization" /> class if the request can be preauthenticated; otherwise, <see langword="null" />. If <paramref name="credentials" /> is <see langword="null" />, this method returns <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="request" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06000FF9 RID: 4089 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FF9")]
|
||||
[Address(RVA = "0xDC3B50", Offset = "0xDC2B50", VA = "0x180DC3B50")]
|
||||
public static Authorization PreAuthenticate(WebRequest request, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04000967 RID: 2407
|
||||
[Token(Token = "0x4000967")]
|
||||
private static ArrayList modules;
|
||||
|
||||
// Token: 0x04000968 RID: 2408
|
||||
[Token(Token = "0x4000968")]
|
||||
private static object locker;
|
||||
|
||||
// Token: 0x04000969 RID: 2409
|
||||
[Token(Token = "0x4000969")]
|
||||
private static ICredentialPolicy credential_policy;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Contains an authentication message for an Internet server.</summary>
|
||||
// Token: 0x0200021B RID: 539
|
||||
[Token(Token = "0x200021B")]
|
||||
public class Authorization
|
||||
{
|
||||
/// <summary>Creates a new instance of the <see cref="T:System.Net.Authorization" /> class with the specified authorization message.</summary>
|
||||
/// <param name="token">The encrypted authorization message expected by the server.</param>
|
||||
// Token: 0x06000DC6 RID: 3526 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000DC6")]
|
||||
[Address(RVA = "0xDC43A0", Offset = "0xDC33A0", VA = "0x180DC43A0")]
|
||||
public Authorization(string token)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Creates a new instance of the <see cref="T:System.Net.Authorization" /> class with the specified authorization message and completion status.</summary>
|
||||
/// <param name="token">The encrypted authorization message expected by the server.</param>
|
||||
/// <param name="finished">The completion status of the authorization attempt. <see langword="true" /> if the authorization attempt is complete; otherwise, <see langword="false" />.</param>
|
||||
// Token: 0x06000DC7 RID: 3527 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000DC7")]
|
||||
[Address(RVA = "0xDC4410", Offset = "0xDC3410", VA = "0x180DC4410")]
|
||||
public Authorization(string token, bool finished)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the message returned to the server in response to an authentication challenge.</summary>
|
||||
/// <returns>The message that will be returned to the server in response to an authentication challenge.</returns>
|
||||
// Token: 0x17000289 RID: 649
|
||||
// (get) Token: 0x06000DC8 RID: 3528 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000289")]
|
||||
public string Message
|
||||
{
|
||||
[Token(Token = "0x6000DC8")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the completion status of the authorization.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the authentication process is complete; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700028A RID: 650
|
||||
// (get) Token: 0x06000DC9 RID: 3529 RVA: 0x00007008 File Offset: 0x00005208
|
||||
[Token(Token = "0x1700028A")]
|
||||
public bool Complete
|
||||
{
|
||||
[Token(Token = "0x6000DC9")]
|
||||
[Address(RVA = "0x497570", Offset = "0x496570", VA = "0x180497570")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000781 RID: 1921
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000781")]
|
||||
private string m_Message;
|
||||
|
||||
// Token: 0x04000782 RID: 1922
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000782")]
|
||||
private bool m_Complete;
|
||||
|
||||
// Token: 0x04000783 RID: 1923
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000783")]
|
||||
internal string ModuleAuthenticationType;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000273 RID: 627
|
||||
[Token(Token = "0x2000273")]
|
||||
internal class AutoWebProxyScriptEngine
|
||||
{
|
||||
// Token: 0x06000FEB RID: 4075 RVA: 0x00007AA0 File Offset: 0x00005CA0
|
||||
[Token(Token = "0x6000FEB")]
|
||||
[Address(RVA = "0xDC4490", Offset = "0xDC3490", VA = "0x180DC4490")]
|
||||
public bool GetProxies(Uri destination, out IList<string> proxyList)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000FEC RID: 4076 RVA: 0x00007AB8 File Offset: 0x00005CB8
|
||||
[Token(Token = "0x6000FEC")]
|
||||
[Address(RVA = "0xDC4490", Offset = "0xDC3490", VA = "0x180DC4490")]
|
||||
public bool GetProxies(Uri destination, out IList<string> proxyList, ref int syncStatus)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,379 @@
|
||||
using System;
|
||||
using System.Net.Mime;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000268 RID: 616
|
||||
[Token(Token = "0x2000268")]
|
||||
internal class Base64Stream : DelegatedStream, IEncodableStream
|
||||
{
|
||||
// Token: 0x06000F79 RID: 3961 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F79")]
|
||||
[Address(RVA = "0xDC6060", Offset = "0xDC5060", VA = "0x180DC6060")]
|
||||
internal Base64Stream(Base64WriteStateInfo writeStateInfo)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002F9 RID: 761
|
||||
// (get) Token: 0x06000F7A RID: 3962 RVA: 0x000077D0 File Offset: 0x000059D0
|
||||
[Token(Token = "0x170002F9")]
|
||||
public override bool CanWrite
|
||||
{
|
||||
[Token(Token = "0x6000F7A")]
|
||||
[Address(RVA = "0xDC60A0", Offset = "0xDC50A0", VA = "0x180DC60A0", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002FA RID: 762
|
||||
// (get) Token: 0x06000F7B RID: 3963 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002FA")]
|
||||
private Base64Stream.ReadStateInfo ReadState
|
||||
{
|
||||
[Token(Token = "0x6000F7B")]
|
||||
[Address(RVA = "0xDC60B0", Offset = "0xDC50B0", VA = "0x180DC60B0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002FB RID: 763
|
||||
// (get) Token: 0x06000F7C RID: 3964 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002FB")]
|
||||
internal Base64WriteStateInfo WriteState
|
||||
{
|
||||
[Token(Token = "0x6000F7C")]
|
||||
[Address(RVA = "0x4975A0", Offset = "0x4965A0", VA = "0x1804975A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000F7D RID: 3965 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F7D")]
|
||||
[Address(RVA = "0xDC44A0", Offset = "0xDC34A0", VA = "0x180DC44A0", Slot = "19")]
|
||||
public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F7E RID: 3966 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F7E")]
|
||||
[Address(RVA = "0xDC4600", Offset = "0xDC3600", VA = "0x180DC4600", Slot = "22")]
|
||||
public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F7F RID: 3967 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F7F")]
|
||||
[Address(RVA = "0xDC4760", Offset = "0xDC3760", VA = "0x180DC4760", Slot = "15")]
|
||||
public override void Close()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F80 RID: 3968 RVA: 0x000077E8 File Offset: 0x000059E8
|
||||
[Token(Token = "0x6000F80")]
|
||||
[Address(RVA = "0xDC4A80", Offset = "0xDC3A80", VA = "0x180DC4A80", Slot = "31")]
|
||||
public int DecodeBytes(byte[] buffer, int offset, int count)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F81 RID: 3969 RVA: 0x00007800 File Offset: 0x00005A00
|
||||
[Token(Token = "0x6000F81")]
|
||||
[Address(RVA = "0xDC5950", Offset = "0xDC4950", VA = "0x180DC5950", Slot = "32")]
|
||||
public int EncodeBytes(byte[] buffer, int offset, int count)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F82 RID: 3970 RVA: 0x00007818 File Offset: 0x00005A18
|
||||
[Token(Token = "0x6000F82")]
|
||||
[Address(RVA = "0xDC4D00", Offset = "0xDC3D00", VA = "0x180DC4D00")]
|
||||
internal int EncodeBytes(byte[] buffer, int offset, int count, bool dontDeferFinalBytes, bool shouldAppendSpaceToCRLF)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F83 RID: 3971 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F83")]
|
||||
[Address(RVA = "0xDC5C70", Offset = "0xDC4C70", VA = "0x180DC5C70", Slot = "33")]
|
||||
public string GetEncodedString()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F84 RID: 3972 RVA: 0x00007830 File Offset: 0x00005A30
|
||||
[Token(Token = "0x6000F84")]
|
||||
[Address(RVA = "0xDC5980", Offset = "0xDC4980", VA = "0x180DC5980", Slot = "20")]
|
||||
public override int EndRead(IAsyncResult asyncResult)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F85 RID: 3973 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F85")]
|
||||
[Address(RVA = "0xDC5A90", Offset = "0xDC4A90", VA = "0x180DC5A90", Slot = "23")]
|
||||
public override void EndWrite(IAsyncResult asyncResult)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F86 RID: 3974 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F86")]
|
||||
[Address(RVA = "0xDC5C10", Offset = "0xDC4C10", VA = "0x180DC5C10", Slot = "17")]
|
||||
public override void Flush()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F87 RID: 3975 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F87")]
|
||||
[Address(RVA = "0xDC5BC0", Offset = "0xDC4BC0", VA = "0x180DC5BC0")]
|
||||
private void FlushInternal()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F88 RID: 3976 RVA: 0x00007848 File Offset: 0x00005A48
|
||||
[Token(Token = "0x6000F88")]
|
||||
[Address(RVA = "0xDC5CC0", Offset = "0xDC4CC0", VA = "0x180DC5CC0", Slot = "27")]
|
||||
public override int Read(byte[] buffer, int offset, int count)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F89 RID: 3977 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F89")]
|
||||
[Address(RVA = "0xDC5E20", Offset = "0xDC4E20", VA = "0x180DC5E20", Slot = "29")]
|
||||
public override void Write(byte[] buffer, int offset, int count)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000926 RID: 2342
|
||||
[Token(Token = "0x4000926")]
|
||||
private static byte[] base64DecodeMap;
|
||||
|
||||
// Token: 0x04000927 RID: 2343
|
||||
[Token(Token = "0x4000927")]
|
||||
private static byte[] base64EncodeMap;
|
||||
|
||||
// Token: 0x04000928 RID: 2344
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x4000928")]
|
||||
private int lineLength;
|
||||
|
||||
// Token: 0x04000929 RID: 2345
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x4000929")]
|
||||
private Base64Stream.ReadStateInfo readState;
|
||||
|
||||
// Token: 0x0400092A RID: 2346
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400092A")]
|
||||
private Base64WriteStateInfo writeState;
|
||||
|
||||
// Token: 0x02000269 RID: 617
|
||||
[Token(Token = "0x2000269")]
|
||||
private class ReadAsyncResult : LazyAsyncResult
|
||||
{
|
||||
// Token: 0x06000F8B RID: 3979 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F8B")]
|
||||
[Address(RVA = "0xDD6E00", Offset = "0xDD5E00", VA = "0x180DD6E00")]
|
||||
internal ReadAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F8C RID: 3980 RVA: 0x00007860 File Offset: 0x00005A60
|
||||
[Token(Token = "0x6000F8C")]
|
||||
[Address(RVA = "0xDD6960", Offset = "0xDD5960", VA = "0x180DD6960")]
|
||||
private bool CompleteRead(IAsyncResult result)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000F8D RID: 3981 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F8D")]
|
||||
[Address(RVA = "0xDD6BD0", Offset = "0xDD5BD0", VA = "0x180DD6BD0")]
|
||||
internal void Read()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F8E RID: 3982 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F8E")]
|
||||
[Address(RVA = "0xDD6A80", Offset = "0xDD5A80", VA = "0x180DD6A80")]
|
||||
private static void OnRead(IAsyncResult result)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F8F RID: 3983 RVA: 0x00007878 File Offset: 0x00005A78
|
||||
[Token(Token = "0x6000F8F")]
|
||||
[Address(RVA = "0xDD69E0", Offset = "0xDD59E0", VA = "0x180DD69E0")]
|
||||
internal static int End(IAsyncResult result)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x0400092B RID: 2347
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400092B")]
|
||||
private Base64Stream parent;
|
||||
|
||||
// Token: 0x0400092C RID: 2348
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400092C")]
|
||||
private byte[] buffer;
|
||||
|
||||
// Token: 0x0400092D RID: 2349
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x400092D")]
|
||||
private int offset;
|
||||
|
||||
// Token: 0x0400092E RID: 2350
|
||||
[FieldOffset(Offset = "0x54")]
|
||||
[Token(Token = "0x400092E")]
|
||||
private int count;
|
||||
|
||||
// Token: 0x0400092F RID: 2351
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x400092F")]
|
||||
private int read;
|
||||
|
||||
// Token: 0x04000930 RID: 2352
|
||||
[Token(Token = "0x4000930")]
|
||||
private static AsyncCallback onRead;
|
||||
}
|
||||
|
||||
// Token: 0x0200026A RID: 618
|
||||
[Token(Token = "0x200026A")]
|
||||
private class WriteAsyncResult : LazyAsyncResult
|
||||
{
|
||||
// Token: 0x06000F91 RID: 3985 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F91")]
|
||||
[Address(RVA = "0xDD6E00", Offset = "0xDD5E00", VA = "0x180DD6E00")]
|
||||
internal WriteAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F92 RID: 3986 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F92")]
|
||||
[Address(RVA = "0xDD9080", Offset = "0xDD8080", VA = "0x180DD9080")]
|
||||
internal void Write()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F93 RID: 3987 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F93")]
|
||||
[Address(RVA = "0xDD8DD0", Offset = "0xDD7DD0", VA = "0x180DD8DD0")]
|
||||
private void CompleteWrite(IAsyncResult result)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F94 RID: 3988 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F94")]
|
||||
[Address(RVA = "0xDD8EE0", Offset = "0xDD7EE0", VA = "0x180DD8EE0")]
|
||||
private static void OnWrite(IAsyncResult result)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F95 RID: 3989 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F95")]
|
||||
[Address(RVA = "0xDD8E20", Offset = "0xDD7E20", VA = "0x180DD8E20")]
|
||||
internal static void End(IAsyncResult result)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000931 RID: 2353
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x4000931")]
|
||||
private Base64Stream parent;
|
||||
|
||||
// Token: 0x04000932 RID: 2354
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x4000932")]
|
||||
private byte[] buffer;
|
||||
|
||||
// Token: 0x04000933 RID: 2355
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x4000933")]
|
||||
private int offset;
|
||||
|
||||
// Token: 0x04000934 RID: 2356
|
||||
[FieldOffset(Offset = "0x54")]
|
||||
[Token(Token = "0x4000934")]
|
||||
private int count;
|
||||
|
||||
// Token: 0x04000935 RID: 2357
|
||||
[Token(Token = "0x4000935")]
|
||||
private static AsyncCallback onWrite;
|
||||
|
||||
// Token: 0x04000936 RID: 2358
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x4000936")]
|
||||
private int written;
|
||||
}
|
||||
|
||||
// Token: 0x0200026B RID: 619
|
||||
[Token(Token = "0x200026B")]
|
||||
private class ReadStateInfo
|
||||
{
|
||||
// Token: 0x170002FC RID: 764
|
||||
// (get) Token: 0x06000F97 RID: 3991 RVA: 0x00007890 File Offset: 0x00005A90
|
||||
// (set) Token: 0x06000F98 RID: 3992 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002FC")]
|
||||
internal byte Val
|
||||
{
|
||||
[Token(Token = "0x6000F97")]
|
||||
[Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6000F98")]
|
||||
[Address(RVA = "0x62ADC0", Offset = "0x629DC0", VA = "0x18062ADC0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002FD RID: 765
|
||||
// (get) Token: 0x06000F99 RID: 3993 RVA: 0x000078A8 File Offset: 0x00005AA8
|
||||
// (set) Token: 0x06000F9A RID: 3994 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002FD")]
|
||||
internal byte Pos
|
||||
{
|
||||
[Token(Token = "0x6000F99")]
|
||||
[Address(RVA = "0x498E20", Offset = "0x497E20", VA = "0x180498E20")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6000F9A")]
|
||||
[Address(RVA = "0x62FA00", Offset = "0x62EA00", VA = "0x18062FA00")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000F9B RID: 3995 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F9B")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public ReadStateInfo()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000937 RID: 2359
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000937")]
|
||||
private byte val;
|
||||
|
||||
// Token: 0x04000938 RID: 2360
|
||||
[FieldOffset(Offset = "0x11")]
|
||||
[Token(Token = "0x4000938")]
|
||||
private byte pos;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200027C RID: 636
|
||||
[Token(Token = "0x200027C")]
|
||||
internal class BasicClient : IAuthenticationModule
|
||||
{
|
||||
// Token: 0x06000FFB RID: 4091 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FFB")]
|
||||
[Address(RVA = "0xDC6110", Offset = "0xDC5110", VA = "0x180DC6110", Slot = "4")]
|
||||
public Authorization Authenticate(string challenge, WebRequest webRequest, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FFC RID: 4092 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FFC")]
|
||||
[Address(RVA = "0xDC61C0", Offset = "0xDC51C0", VA = "0x180DC61C0")]
|
||||
private static byte[] GetBytes(string str)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FFD RID: 4093 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FFD")]
|
||||
[Address(RVA = "0xDC6260", Offset = "0xDC5260", VA = "0x180DC6260")]
|
||||
private static Authorization InternalAuthenticate(WebRequest webRequest, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FFE RID: 4094 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FFE")]
|
||||
[Address(RVA = "0xDC6610", Offset = "0xDC5610", VA = "0x180DC6610", Slot = "5")]
|
||||
public Authorization PreAuthenticate(WebRequest webRequest, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x1700030C RID: 780
|
||||
// (get) Token: 0x06000FFF RID: 4095 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700030C")]
|
||||
public string AuthenticationType
|
||||
{
|
||||
[Token(Token = "0x6000FFF")]
|
||||
[Address(RVA = "0xDC6630", Offset = "0xDC5630", VA = "0x180DC6630", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001000 RID: 4096 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001000")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public BasicClient()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Represents the method that specifies a local Internet Protocol address and port number for a <see cref="T:System.Net.ServicePoint" />.</summary>
|
||||
/// <param name="servicePoint">The <see cref="T:System.Net.ServicePoint" /> associated with the connection to be created.</param>
|
||||
/// <param name="remoteEndPoint">The remote <see cref="T:System.Net.IPEndPoint" /> that specifies the remote host.</param>
|
||||
/// <param name="retryCount">The number of times this delegate was called for a specified connection.</param>
|
||||
/// <returns>The local <see cref="T:System.Net.IPEndPoint" /> to which the <see cref="T:System.Net.ServicePoint" /> is bound.</returns>
|
||||
// Token: 0x0200027D RID: 637
|
||||
// (Invoke) Token: 0x06001002 RID: 4098
|
||||
[Token(Token = "0x200027D")]
|
||||
public delegate IPEndPoint BindIPEndPoint(ServicePoint servicePoint, IPEndPoint remoteEndPoint, int retryCount);
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Cache
|
||||
{
|
||||
/// <summary>Specifies caching behavior for resources obtained using the Hypertext Transfer protocol (HTTP).</summary>
|
||||
// Token: 0x0200030C RID: 780
|
||||
[Token(Token = "0x200030C")]
|
||||
public enum HttpRequestCacheLevel
|
||||
{
|
||||
/// <summary>Satisfies a request for a resource either by using the cached copy of the resource or by sending a request for the resource to the server. The action taken is determined by the current cache policy and the age of the content in the cache. This is the cache level that should be used by most applications.</summary>
|
||||
// Token: 0x04000D14 RID: 3348
|
||||
[Token(Token = "0x4000D14")]
|
||||
Default,
|
||||
/// <summary>Satisfies a request by using the server. No entries are taken from caches, added to caches, or removed from caches between the client and server. No entries are taken from caches, added to caches, or removed from caches between the client and server. This is the default cache behavior specified in the machine configuration file that ships with the .NET Framework.</summary>
|
||||
// Token: 0x04000D15 RID: 3349
|
||||
[Token(Token = "0x4000D15")]
|
||||
BypassCache,
|
||||
/// <summary>Satisfies a request using the locally cached resource; does not send a request for an item that is not in the cache. When this cache policy level is specified, a <see cref="T:System.Net.WebException" /> exception is thrown if the item is not in the client cache.</summary>
|
||||
// Token: 0x04000D16 RID: 3350
|
||||
[Token(Token = "0x4000D16")]
|
||||
CacheOnly,
|
||||
/// <summary>Satisfies a request for a resource from the cache if the resource is available; otherwise, sends a request for a resource to the server. If the requested item is available in any cache between the client and the server, the request might be satisfied by the intermediate cache.</summary>
|
||||
// Token: 0x04000D17 RID: 3351
|
||||
[Token(Token = "0x4000D17")]
|
||||
CacheIfAvailable,
|
||||
/// <summary>Compares the copy of the resource in the cache with the copy on the server. If the copy on the server is newer, it is used to satisfy the request and replaces the copy in the cache. If the copy in the cache is the same as the server copy, the cached copy is used. In the HTTP caching protocol, this is achieved using a conditional request.</summary>
|
||||
// Token: 0x04000D18 RID: 3352
|
||||
[Token(Token = "0x4000D18")]
|
||||
Revalidate,
|
||||
/// <summary>Satisfies a request by using the server. The response might be saved in the cache. In the HTTP caching protocol, this is achieved using the no-cache cache control directive and the no-cache <see langword="Pragma" /> header.</summary>
|
||||
// Token: 0x04000D19 RID: 3353
|
||||
[Token(Token = "0x4000D19")]
|
||||
Reload,
|
||||
/// <summary>Never satisfies a request by using resources from the cache and does not cache resources. If the resource is present in the local cache, it is removed. This policy level indicates to intermediate caches that they should remove the resource. In the HTTP caching protocol, this is achieved using the no-cache cache control directive.</summary>
|
||||
// Token: 0x04000D1A RID: 3354
|
||||
[Token(Token = "0x4000D1A")]
|
||||
NoCacheNoStore,
|
||||
/// <summary>Satisfies a request for a resource either from the local computer's cache or a remote cache on the local area network. If the request cannot be satisfied, a <see cref="T:System.Net.WebException" /> exception is thrown. In the HTTP caching protocol, this is achieved using the <see langword="only-if-cached" /> cache control directive.</summary>
|
||||
// Token: 0x04000D1B RID: 3355
|
||||
[Token(Token = "0x4000D1B")]
|
||||
CacheOrNextCacheOnly,
|
||||
/// <summary>Satisfies a request by using the server or a cache other than the local cache. Before the request can be satisfied by an intermediate cache, that cache must revalidate its cached entry with the server. In the HTTP caching protocol, this is achieved using the max-age = 0 cache control directive and the no-cache <see langword="Pragma" /> header.</summary>
|
||||
// Token: 0x04000D1C RID: 3356
|
||||
[Token(Token = "0x4000D1C")]
|
||||
Refresh
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Cache
|
||||
{
|
||||
// Token: 0x02000307 RID: 775
|
||||
[Token(Token = "0x2000307")]
|
||||
internal abstract class RequestCache
|
||||
{
|
||||
// Token: 0x04000D07 RID: 3335
|
||||
[Token(Token = "0x4000D07")]
|
||||
internal static readonly char[] LineSplits;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Cache
|
||||
{
|
||||
// Token: 0x02000309 RID: 777
|
||||
[Token(Token = "0x2000309")]
|
||||
internal class RequestCacheBinding
|
||||
{
|
||||
// Token: 0x1700042E RID: 1070
|
||||
// (get) Token: 0x06001478 RID: 5240 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700042E")]
|
||||
internal RequestCache Cache
|
||||
{
|
||||
[Token(Token = "0x6001478")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700042F RID: 1071
|
||||
// (get) Token: 0x06001479 RID: 5241 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700042F")]
|
||||
internal RequestCacheValidator Validator
|
||||
{
|
||||
[Token(Token = "0x6001479")]
|
||||
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000D08 RID: 3336
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000D08")]
|
||||
private RequestCache m_RequestCache;
|
||||
|
||||
// Token: 0x04000D09 RID: 3337
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000D09")]
|
||||
private RequestCacheValidator m_CacheValidator;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Cache
|
||||
{
|
||||
/// <summary>Specifies caching behavior for resources obtained using <see cref="T:System.Net.WebRequest" /> and its derived classes.</summary>
|
||||
// Token: 0x0200030A RID: 778
|
||||
[Token(Token = "0x200030A")]
|
||||
public enum RequestCacheLevel
|
||||
{
|
||||
/// <summary>Satisfies a request for a resource either by using the cached copy of the resource or by sending a request for the resource to the server. The action taken is determined by the current cache policy and the age of the content in the cache. This is the cache level that should be used by most applications.</summary>
|
||||
// Token: 0x04000D0B RID: 3339
|
||||
[Token(Token = "0x4000D0B")]
|
||||
Default,
|
||||
/// <summary>Satisfies a request by using the server. No entries are taken from caches, added to caches, or removed from caches between the client and server. This is the default cache behavior specified in the machine configuration file that ships with the .NET Framework.</summary>
|
||||
// Token: 0x04000D0C RID: 3340
|
||||
[Token(Token = "0x4000D0C")]
|
||||
BypassCache,
|
||||
/// <summary>Satisfies a request using the locally cached resource; does not send a request for an item that is not in the cache. When this cache policy level is specified, a <see cref="T:System.Net.WebException" /> exception is thrown if the item is not in the client cache.</summary>
|
||||
// Token: 0x04000D0D RID: 3341
|
||||
[Token(Token = "0x4000D0D")]
|
||||
CacheOnly,
|
||||
/// <summary>Satisfies a request for a resource from the cache, if the resource is available; otherwise, sends a request for a resource to the server. If the requested item is available in any cache between the client and the server, the request might be satisfied by the intermediate cache.</summary>
|
||||
// Token: 0x04000D0E RID: 3342
|
||||
[Token(Token = "0x4000D0E")]
|
||||
CacheIfAvailable,
|
||||
/// <summary>Satisfies a request by using the cached copy of the resource if the timestamp is the same as the timestamp of the resource on the server; otherwise, the resource is downloaded from the server, presented to the caller, and stored in the cache.</summary>
|
||||
// Token: 0x04000D0F RID: 3343
|
||||
[Token(Token = "0x4000D0F")]
|
||||
Revalidate,
|
||||
/// <summary>Satisfies a request by using the server. The response might be saved in the cache. In the HTTP caching protocol, this is achieved using the <see langword="no-cache" /> cache control directive and the no-cache <see langword="Pragma" /> header.</summary>
|
||||
// Token: 0x04000D10 RID: 3344
|
||||
[Token(Token = "0x4000D10")]
|
||||
Reload,
|
||||
/// <summary>Never satisfies a request by using resources from the cache and does not cache resources. If the resource is present in the local cache, it is removed. This policy level indicates to intermediate caches that they should remove the resource. In the HTTP caching protocol, this is achieved using the <see langword="no-cache" /> cache control directive.</summary>
|
||||
// Token: 0x04000D11 RID: 3345
|
||||
[Token(Token = "0x4000D11")]
|
||||
NoCacheNoStore
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Cache
|
||||
{
|
||||
/// <summary>Defines an application's caching requirements for resources obtained by using <see cref="T:System.Net.WebRequest" /> objects.</summary>
|
||||
// Token: 0x0200030B RID: 779
|
||||
[Token(Token = "0x200030B")]
|
||||
public class RequestCachePolicy
|
||||
{
|
||||
/// <summary>Gets the <see cref="T:System.Net.Cache.RequestCacheLevel" /> value specified when this instance was constructed.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.Cache.RequestCacheLevel" /> value that specifies the cache behavior for resources obtained using <see cref="T:System.Net.WebRequest" /> objects.</returns>
|
||||
// Token: 0x17000430 RID: 1072
|
||||
// (get) Token: 0x0600147A RID: 5242 RVA: 0x00009438 File Offset: 0x00007638
|
||||
[Token(Token = "0x17000430")]
|
||||
public RequestCacheLevel Level
|
||||
{
|
||||
[Token(Token = "0x600147A")]
|
||||
[Address(RVA = "0x40F000", Offset = "0x40E000", VA = "0x18040F000")]
|
||||
get
|
||||
{
|
||||
return RequestCacheLevel.Default;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000D12 RID: 3346
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000D12")]
|
||||
private RequestCacheLevel m_Level;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Cache
|
||||
{
|
||||
// Token: 0x0200030D RID: 781
|
||||
[Token(Token = "0x200030D")]
|
||||
internal class RequestCacheProtocol
|
||||
{
|
||||
// Token: 0x0600147B RID: 5243 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600147B")]
|
||||
[Address(RVA = "0xDD6F20", Offset = "0xDD5F20", VA = "0x180DD6F20")]
|
||||
public RequestCacheProtocol(object arg1, object arg2)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Cache
|
||||
{
|
||||
// Token: 0x02000308 RID: 776
|
||||
[Token(Token = "0x2000308")]
|
||||
internal class RequestCacheValidator
|
||||
{
|
||||
// Token: 0x06001477 RID: 5239 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001477")]
|
||||
[Address(RVA = "0xDD6F80", Offset = "0xDD5F80", VA = "0x180DD6F80")]
|
||||
public object CreateValidator()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200023C RID: 572
|
||||
[Token(Token = "0x200023C")]
|
||||
internal class CaseInsensitiveAscii : IEqualityComparer, IComparer
|
||||
{
|
||||
// Token: 0x06000E5E RID: 3678 RVA: 0x00007290 File Offset: 0x00005490
|
||||
[Token(Token = "0x6000E5E")]
|
||||
[Address(RVA = "0xDC73C0", Offset = "0xDC63C0", VA = "0x180DC73C0", Slot = "5")]
|
||||
public int GetHashCode(object myObject)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000E5F RID: 3679 RVA: 0x000072A8 File Offset: 0x000054A8
|
||||
[Token(Token = "0x6000E5F")]
|
||||
[Address(RVA = "0xDC6F70", Offset = "0xDC5F70", VA = "0x180DC6F70", Slot = "6")]
|
||||
public int Compare(object firstObject, object secondObject)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000E60 RID: 3680 RVA: 0x000072C0 File Offset: 0x000054C0
|
||||
[Token(Token = "0x6000E60")]
|
||||
[Address(RVA = "0xDC72A0", Offset = "0xDC62A0", VA = "0x180DC72A0")]
|
||||
private int FastGetHashCode(string myString)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000E61 RID: 3681 RVA: 0x000072D8 File Offset: 0x000054D8
|
||||
[Token(Token = "0x6000E61")]
|
||||
[Address(RVA = "0xDC7110", Offset = "0xDC6110", VA = "0x180DC7110", Slot = "4")]
|
||||
public bool Equals(object firstObject, object secondObject)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000E62 RID: 3682 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000E62")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public CaseInsensitiveAscii()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000870 RID: 2160
|
||||
[Token(Token = "0x4000870")]
|
||||
internal static readonly CaseInsensitiveAscii StaticInstance;
|
||||
|
||||
// Token: 0x04000871 RID: 2161
|
||||
[Token(Token = "0x4000871")]
|
||||
internal static readonly byte[] AsciiToLower;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000246 RID: 582
|
||||
[Token(Token = "0x2000246")]
|
||||
[Flags]
|
||||
internal enum CloseExState
|
||||
{
|
||||
// Token: 0x0400088B RID: 2187
|
||||
[Token(Token = "0x400088B")]
|
||||
Normal = 0,
|
||||
// Token: 0x0400088C RID: 2188
|
||||
[Token(Token = "0x400088C")]
|
||||
Abort = 1,
|
||||
// Token: 0x0400088D RID: 2189
|
||||
[Token(Token = "0x400088D")]
|
||||
Silent = 2
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200025A RID: 602
|
||||
[Token(Token = "0x200025A")]
|
||||
internal class Comparer : IComparer
|
||||
{
|
||||
// Token: 0x06000F11 RID: 3857 RVA: 0x000075F0 File Offset: 0x000057F0
|
||||
[Token(Token = "0x6000F11")]
|
||||
[Address(RVA = "0xDC7590", Offset = "0xDC6590", VA = "0x180DC7590", Slot = "4")]
|
||||
int IComparer.Compare(object ol, object or)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F12 RID: 3858 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F12")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public Comparer()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,553 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides a set of properties and methods that are used to manage cookies. This class cannot be inherited.</summary>
|
||||
// Token: 0x02000255 RID: 597
|
||||
[Token(Token = "0x2000255")]
|
||||
[Serializable]
|
||||
public sealed class Cookie
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Cookie" /> class.</summary>
|
||||
// Token: 0x06000ED4 RID: 3796 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000ED4")]
|
||||
[Address(RVA = "0xDCDF40", Offset = "0xDCCF40", VA = "0x180DCDF40")]
|
||||
public Cookie()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a comment that the server can add to a <see cref="T:System.Net.Cookie" />.</summary>
|
||||
/// <returns>An optional comment to document intended usage for this <see cref="T:System.Net.Cookie" />.</returns>
|
||||
// Token: 0x170002C5 RID: 709
|
||||
// (get) Token: 0x06000ED5 RID: 3797 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000ED6 RID: 3798 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002C5")]
|
||||
public string Comment
|
||||
{
|
||||
[Token(Token = "0x6000ED5")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000ED6")]
|
||||
[Address(RVA = "0xDCE410", Offset = "0xDCD410", VA = "0x180DCE410")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a URI comment that the server can provide with a <see cref="T:System.Net.Cookie" />.</summary>
|
||||
/// <returns>An optional comment that represents the intended usage of the URI reference for this <see cref="T:System.Net.Cookie" />. The value must conform to URI format.</returns>
|
||||
// Token: 0x170002C6 RID: 710
|
||||
// (set) Token: 0x06000ED7 RID: 3799 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002C6")]
|
||||
public Uri CommentUri
|
||||
{
|
||||
[Token(Token = "0x6000ED7")]
|
||||
[Address(RVA = "0x4157F0", Offset = "0x4147F0", VA = "0x1804157F0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Determines whether a page script or other active content can access this cookie.</summary>
|
||||
/// <returns>Boolean value that determines whether a page script or other active content can access this cookie.</returns>
|
||||
// Token: 0x170002C7 RID: 711
|
||||
// (set) Token: 0x06000ED8 RID: 3800 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002C7")]
|
||||
public bool HttpOnly
|
||||
{
|
||||
[Token(Token = "0x6000ED8")]
|
||||
[Address(RVA = "0x6B48D0", Offset = "0x6B38D0", VA = "0x1806B48D0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the discard flag set by the server.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the client is to discard the <see cref="T:System.Net.Cookie" /> at the end of the current session; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
// Token: 0x170002C8 RID: 712
|
||||
// (set) Token: 0x06000ED9 RID: 3801 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002C8")]
|
||||
public bool Discard
|
||||
{
|
||||
[Token(Token = "0x6000ED9")]
|
||||
[Address(RVA = "0x6350C0", Offset = "0x6340C0", VA = "0x1806350C0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the URI for which the <see cref="T:System.Net.Cookie" /> is valid.</summary>
|
||||
/// <returns>The URI for which the <see cref="T:System.Net.Cookie" /> is valid.</returns>
|
||||
// Token: 0x170002C9 RID: 713
|
||||
// (get) Token: 0x06000EDA RID: 3802 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000EDB RID: 3803 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002C9")]
|
||||
public string Domain
|
||||
{
|
||||
[Token(Token = "0x6000EDA")]
|
||||
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000EDB")]
|
||||
[Address(RVA = "0xDCE470", Offset = "0xDCD470", VA = "0x180DCE470")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002CA RID: 714
|
||||
// (get) Token: 0x06000EDC RID: 3804 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002CA")]
|
||||
private string _Domain
|
||||
{
|
||||
[Token(Token = "0x6000EDC")]
|
||||
[Address(RVA = "0xDCE160", Offset = "0xDCD160", VA = "0x180DCE160")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the current state of the <see cref="T:System.Net.Cookie" />.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the <see cref="T:System.Net.Cookie" /> has expired; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
// Token: 0x170002CB RID: 715
|
||||
// (get) Token: 0x06000EDD RID: 3805 RVA: 0x00007410 File Offset: 0x00005610
|
||||
[Token(Token = "0x170002CB")]
|
||||
public bool Expired
|
||||
{
|
||||
[Token(Token = "0x6000EDD")]
|
||||
[Address(RVA = "0xDCE090", Offset = "0xDCD090", VA = "0x180DCE090")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the expiration date and time for the <see cref="T:System.Net.Cookie" /> as a <see cref="T:System.DateTime" />.</summary>
|
||||
/// <returns>The expiration date and time for the <see cref="T:System.Net.Cookie" /> as a <see cref="T:System.DateTime" /> instance.</returns>
|
||||
// Token: 0x170002CC RID: 716
|
||||
// (set) Token: 0x06000EDE RID: 3806 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002CC")]
|
||||
public DateTime Expires
|
||||
{
|
||||
[Token(Token = "0x6000EDE")]
|
||||
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the name for the <see cref="T:System.Net.Cookie" />.</summary>
|
||||
/// <returns>The name for the <see cref="T:System.Net.Cookie" />.</returns>
|
||||
/// <exception cref="T:System.Net.CookieException">The value specified for a set operation is <see langword="null" /> or the empty string
|
||||
/// -or-
|
||||
/// The value specified for a set operation contained an illegal character. The following characters must not be used inside the <see cref="P:System.Net.Cookie.Name" /> property: equal sign, semicolon, comma, newline (\n), return (\r), tab (\t), and space character. The dollar sign character ("$") cannot be the first character.</exception>
|
||||
// Token: 0x170002CD RID: 717
|
||||
// (get) Token: 0x06000EDF RID: 3807 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002CD")]
|
||||
public string Name
|
||||
{
|
||||
[Token(Token = "0x6000EDF")]
|
||||
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000EE0 RID: 3808 RVA: 0x00007428 File Offset: 0x00005628
|
||||
[Token(Token = "0x6000EE0")]
|
||||
[Address(RVA = "0xDCC840", Offset = "0xDCB840", VA = "0x180DCC840")]
|
||||
internal bool InternalSetName(string value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the URIs to which the <see cref="T:System.Net.Cookie" /> applies.</summary>
|
||||
/// <returns>The URIs to which the <see cref="T:System.Net.Cookie" /> applies.</returns>
|
||||
// Token: 0x170002CE RID: 718
|
||||
// (get) Token: 0x06000EE1 RID: 3809 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000EE2 RID: 3810 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002CE")]
|
||||
public string Path
|
||||
{
|
||||
[Token(Token = "0x6000EE1")]
|
||||
[Address(RVA = "0x4975A0", Offset = "0x4965A0", VA = "0x1804975A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000EE2")]
|
||||
[Address(RVA = "0xDCE4F0", Offset = "0xDCD4F0", VA = "0x180DCE4F0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002CF RID: 719
|
||||
// (get) Token: 0x06000EE3 RID: 3811 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002CF")]
|
||||
private string _Path
|
||||
{
|
||||
[Token(Token = "0x6000EE3")]
|
||||
[Address(RVA = "0xDCE200", Offset = "0xDCD200", VA = "0x180DCE200")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002D0 RID: 720
|
||||
// (get) Token: 0x06000EE4 RID: 3812 RVA: 0x00007440 File Offset: 0x00005640
|
||||
[Token(Token = "0x170002D0")]
|
||||
internal bool Plain
|
||||
{
|
||||
[Token(Token = "0x6000EE4")]
|
||||
[Address(RVA = "0x949E20", Offset = "0x948E20", VA = "0x180949E20")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000EE5 RID: 3813 RVA: 0x00007458 File Offset: 0x00005658
|
||||
[Token(Token = "0x6000EE5")]
|
||||
[Address(RVA = "0xDCC930", Offset = "0xDCB930", VA = "0x180DCC930")]
|
||||
private static bool IsDomainEqualToHost(string domain, string host)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000EE6 RID: 3814 RVA: 0x00007470 File Offset: 0x00005670
|
||||
[Token(Token = "0x6000EE6")]
|
||||
[Address(RVA = "0xDCCF80", Offset = "0xDCBF80", VA = "0x180DCCF80")]
|
||||
internal bool VerifySetDefaults(CookieVariant variant, Uri uri, bool isLocalDomain, string localDomain, bool set_default, bool isThrow)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000EE7 RID: 3815 RVA: 0x00007488 File Offset: 0x00005688
|
||||
[Token(Token = "0x6000EE7")]
|
||||
[Address(RVA = "0xDCC2B0", Offset = "0xDCB2B0", VA = "0x180DCC2B0")]
|
||||
private static bool DomainCharsTest(string name)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a list of TCP ports that the <see cref="T:System.Net.Cookie" /> applies to.</summary>
|
||||
/// <returns>The list of TCP ports that the <see cref="T:System.Net.Cookie" /> applies to.</returns>
|
||||
/// <exception cref="T:System.Net.CookieException">The value specified for a set operation could not be parsed or is not enclosed in double quotes.</exception>
|
||||
// Token: 0x170002D1 RID: 721
|
||||
// (set) Token: 0x06000EE8 RID: 3816 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002D1")]
|
||||
public string Port
|
||||
{
|
||||
[Token(Token = "0x6000EE8")]
|
||||
[Address(RVA = "0xDCE550", Offset = "0xDCD550", VA = "0x180DCE550")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002D2 RID: 722
|
||||
// (get) Token: 0x06000EE9 RID: 3817 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002D2")]
|
||||
internal int[] PortList
|
||||
{
|
||||
[Token(Token = "0x6000EE9")]
|
||||
[Address(RVA = "0x4177D0", Offset = "0x4167D0", VA = "0x1804177D0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002D3 RID: 723
|
||||
// (get) Token: 0x06000EEA RID: 3818 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002D3")]
|
||||
private string _Port
|
||||
{
|
||||
[Token(Token = "0x6000EEA")]
|
||||
[Address(RVA = "0xDCE270", Offset = "0xDCD270", VA = "0x180DCE270")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the security level of a <see cref="T:System.Net.Cookie" />.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the client is only to return the cookie in subsequent requests if those requests use Secure Hypertext Transfer Protocol (HTTPS); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
// Token: 0x170002D4 RID: 724
|
||||
// (get) Token: 0x06000EEB RID: 3819 RVA: 0x000074A0 File Offset: 0x000056A0
|
||||
// (set) Token: 0x06000EEC RID: 3820 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002D4")]
|
||||
public bool Secure
|
||||
{
|
||||
[Token(Token = "0x6000EEB")]
|
||||
[Address(RVA = "0x6B48A0", Offset = "0x6B38A0", VA = "0x1806B48A0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6000EEC")]
|
||||
[Address(RVA = "0x6B48F0", Offset = "0x6B38F0", VA = "0x1806B48F0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the <see cref="P:System.Net.Cookie.Value" /> for the <see cref="T:System.Net.Cookie" />.</summary>
|
||||
/// <returns>The <see cref="P:System.Net.Cookie.Value" /> for the <see cref="T:System.Net.Cookie" />.</returns>
|
||||
// Token: 0x170002D5 RID: 725
|
||||
// (get) Token: 0x06000EED RID: 3821 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000EEE RID: 3822 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002D5")]
|
||||
public string Value
|
||||
{
|
||||
[Token(Token = "0x6000EED")]
|
||||
[Address(RVA = "0x4177B0", Offset = "0x4167B0", VA = "0x1804177B0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000EEE")]
|
||||
[Address(RVA = "0xDCE940", Offset = "0xDCD940", VA = "0x180DCE940")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002D6 RID: 726
|
||||
// (get) Token: 0x06000EEF RID: 3823 RVA: 0x000074B8 File Offset: 0x000056B8
|
||||
[Token(Token = "0x170002D6")]
|
||||
internal CookieVariant Variant
|
||||
{
|
||||
[Token(Token = "0x6000EEF")]
|
||||
[Address(RVA = "0x470B70", Offset = "0x46FB70", VA = "0x180470B70")]
|
||||
get
|
||||
{
|
||||
return CookieVariant.Unknown;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002D7 RID: 727
|
||||
// (get) Token: 0x06000EF0 RID: 3824 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002D7")]
|
||||
internal string DomainKey
|
||||
{
|
||||
[Token(Token = "0x6000EF0")]
|
||||
[Address(RVA = "0xDCE070", Offset = "0xDCD070", VA = "0x180DCE070")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the version of HTTP state maintenance to which the cookie conforms.</summary>
|
||||
/// <returns>The version of HTTP state maintenance to which the cookie conforms.</returns>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The value specified for a version is not allowed.</exception>
|
||||
// Token: 0x170002D8 RID: 728
|
||||
// (get) Token: 0x06000EF1 RID: 3825 RVA: 0x000074D0 File Offset: 0x000056D0
|
||||
// (set) Token: 0x06000EF2 RID: 3826 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002D8")]
|
||||
public int Version
|
||||
{
|
||||
[Token(Token = "0x6000EF1")]
|
||||
[Address(RVA = "0x4F3F50", Offset = "0x4F2F50", VA = "0x1804F3F50")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[Token(Token = "0x6000EF2")]
|
||||
[Address(RVA = "0xDCE9A0", Offset = "0xDCD9A0", VA = "0x180DCE9A0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002D9 RID: 729
|
||||
// (get) Token: 0x06000EF3 RID: 3827 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002D9")]
|
||||
private string _Version
|
||||
{
|
||||
[Token(Token = "0x6000EF3")]
|
||||
[Address(RVA = "0xDCE320", Offset = "0xDCD320", VA = "0x180DCE320")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000EF4 RID: 3828 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000EF4")]
|
||||
[Address(RVA = "0xDCC450", Offset = "0xDCB450", VA = "0x180DCC450")]
|
||||
internal static IComparer GetComparer()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Overrides the <see cref="M:System.Object.Equals(System.Object)" /> method.</summary>
|
||||
/// <param name="comparand">A reference to a <see cref="T:System.Net.Cookie" />.</param>
|
||||
/// <returns>Returns <see langword="true" /> if the <see cref="T:System.Net.Cookie" /> is equal to <paramref name="comparand" />. Two <see cref="T:System.Net.Cookie" /> instances are equal if their <see cref="P:System.Net.Cookie.Name" />, <see cref="P:System.Net.Cookie.Value" />, <see cref="P:System.Net.Cookie.Path" />, <see cref="P:System.Net.Cookie.Domain" />, and <see cref="P:System.Net.Cookie.Version" /> properties are equal. <see cref="P:System.Net.Cookie.Name" /> and <see cref="P:System.Net.Cookie.Domain" /> string comparisons are case-insensitive.</returns>
|
||||
// Token: 0x06000EF5 RID: 3829 RVA: 0x000074E8 File Offset: 0x000056E8
|
||||
[Token(Token = "0x6000EF5")]
|
||||
[Address(RVA = "0xDCC340", Offset = "0xDCB340", VA = "0x180DCC340", Slot = "0")]
|
||||
public override bool Equals(object comparand)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Overrides the <see cref="M:System.Object.GetHashCode" /> method.</summary>
|
||||
/// <returns>The 32-bit signed integer hash code for this instance.</returns>
|
||||
// Token: 0x06000EF6 RID: 3830 RVA: 0x00007500 File Offset: 0x00005700
|
||||
[Token(Token = "0x6000EF6")]
|
||||
[Address(RVA = "0xDCC4B0", Offset = "0xDCB4B0", VA = "0x180DCC4B0", Slot = "2")]
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// <summary>Overrides the <see cref="M:System.Object.ToString" /> method.</summary>
|
||||
/// <returns>Returns a string representation of this <see cref="T:System.Net.Cookie" /> object that is suitable for including in a HTTP Cookie: request header.</returns>
|
||||
// Token: 0x06000EF7 RID: 3831 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000EF7")]
|
||||
[Address(RVA = "0xDCC990", Offset = "0xDCB990", VA = "0x180DCC990", Slot = "3")]
|
||||
public override string ToString()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x040008B4 RID: 2228
|
||||
[Token(Token = "0x40008B4")]
|
||||
internal static readonly char[] PortSplitDelimiters;
|
||||
|
||||
// Token: 0x040008B5 RID: 2229
|
||||
[Token(Token = "0x40008B5")]
|
||||
internal static readonly char[] Reserved2Name;
|
||||
|
||||
// Token: 0x040008B6 RID: 2230
|
||||
[Token(Token = "0x40008B6")]
|
||||
internal static readonly char[] Reserved2Value;
|
||||
|
||||
// Token: 0x040008B7 RID: 2231
|
||||
[Token(Token = "0x40008B7")]
|
||||
private static Comparer staticComparer;
|
||||
|
||||
// Token: 0x040008B8 RID: 2232
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40008B8")]
|
||||
private string m_comment;
|
||||
|
||||
// Token: 0x040008B9 RID: 2233
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40008B9")]
|
||||
private Uri m_commentUri;
|
||||
|
||||
// Token: 0x040008BA RID: 2234
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40008BA")]
|
||||
private CookieVariant m_cookieVariant;
|
||||
|
||||
// Token: 0x040008BB RID: 2235
|
||||
[FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x40008BB")]
|
||||
private bool m_discard;
|
||||
|
||||
// Token: 0x040008BC RID: 2236
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x40008BC")]
|
||||
private string m_domain;
|
||||
|
||||
// Token: 0x040008BD RID: 2237
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x40008BD")]
|
||||
private bool m_domain_implicit;
|
||||
|
||||
// Token: 0x040008BE RID: 2238
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x40008BE")]
|
||||
private DateTime m_expires;
|
||||
|
||||
// Token: 0x040008BF RID: 2239
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x40008BF")]
|
||||
private string m_name;
|
||||
|
||||
// Token: 0x040008C0 RID: 2240
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x40008C0")]
|
||||
private string m_path;
|
||||
|
||||
// Token: 0x040008C1 RID: 2241
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x40008C1")]
|
||||
private bool m_path_implicit;
|
||||
|
||||
// Token: 0x040008C2 RID: 2242
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x40008C2")]
|
||||
private string m_port;
|
||||
|
||||
// Token: 0x040008C3 RID: 2243
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x40008C3")]
|
||||
private bool m_port_implicit;
|
||||
|
||||
// Token: 0x040008C4 RID: 2244
|
||||
[FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x40008C4")]
|
||||
private int[] m_port_list;
|
||||
|
||||
// Token: 0x040008C5 RID: 2245
|
||||
[FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x40008C5")]
|
||||
private bool m_secure;
|
||||
|
||||
// Token: 0x040008C6 RID: 2246
|
||||
[FieldOffset(Offset = "0x71")]
|
||||
[Token(Token = "0x40008C6")]
|
||||
[OptionalField]
|
||||
private bool m_httpOnly;
|
||||
|
||||
// Token: 0x040008C7 RID: 2247
|
||||
[FieldOffset(Offset = "0x78")]
|
||||
[Token(Token = "0x40008C7")]
|
||||
private DateTime m_timeStamp;
|
||||
|
||||
// Token: 0x040008C8 RID: 2248
|
||||
[FieldOffset(Offset = "0x80")]
|
||||
[Token(Token = "0x40008C8")]
|
||||
private string m_value;
|
||||
|
||||
// Token: 0x040008C9 RID: 2249
|
||||
[FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x40008C9")]
|
||||
private int m_version;
|
||||
|
||||
// Token: 0x040008CA RID: 2250
|
||||
[FieldOffset(Offset = "0x90")]
|
||||
[Token(Token = "0x40008CA")]
|
||||
private string m_domainKey;
|
||||
|
||||
// Token: 0x040008CB RID: 2251
|
||||
[FieldOffset(Offset = "0x98")]
|
||||
[Token(Token = "0x40008CB")]
|
||||
internal bool IsQuotedVersion;
|
||||
|
||||
// Token: 0x040008CC RID: 2252
|
||||
[FieldOffset(Offset = "0x99")]
|
||||
[Token(Token = "0x40008CC")]
|
||||
internal bool IsQuotedDomain;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,284 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides a collection container for instances of the <see cref="T:System.Net.Cookie" /> class.</summary>
|
||||
// Token: 0x0200025B RID: 603
|
||||
[Token(Token = "0x200025B")]
|
||||
[Serializable]
|
||||
public class CookieCollection : ICollection, IEnumerable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.CookieCollection" /> class.</summary>
|
||||
// Token: 0x06000F13 RID: 3859 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F13")]
|
||||
[Address(RVA = "0xDC8780", Offset = "0xDC7780", VA = "0x180DC8780")]
|
||||
public CookieCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see cref="T:System.Net.Cookie" /> with a specific index from a <see cref="T:System.Net.CookieCollection" />.</summary>
|
||||
/// <param name="index">The zero-based index of the <see cref="T:System.Net.Cookie" /> to be found.</param>
|
||||
/// <returns>A <see cref="T:System.Net.Cookie" /> with a specific index from a <see cref="T:System.Net.CookieCollection" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">
|
||||
/// <paramref name="index" /> is less than 0 or <paramref name="index" /> is greater than or equal to <see cref="P:System.Net.CookieCollection.Count" />.</exception>
|
||||
// Token: 0x170002E1 RID: 737
|
||||
[Token(Token = "0x170002E1")]
|
||||
public Cookie this[int index]
|
||||
{
|
||||
[Token(Token = "0x6000F14")]
|
||||
[Address(RVA = "0xDC8820", Offset = "0xDC7820", VA = "0x180DC8820")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds a <see cref="T:System.Net.Cookie" /> to a <see cref="T:System.Net.CookieCollection" />.</summary>
|
||||
/// <param name="cookie">The <see cref="T:System.Net.Cookie" /> to be added to a <see cref="T:System.Net.CookieCollection" />.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="cookie" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06000F15 RID: 3861 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F15")]
|
||||
[Address(RVA = "0xDC7F40", Offset = "0xDC6F40", VA = "0x180DC7F40")]
|
||||
public void Add(Cookie cookie)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Adds the contents of a <see cref="T:System.Net.CookieCollection" /> to the current instance.</summary>
|
||||
/// <param name="cookies">The <see cref="T:System.Net.CookieCollection" /> to be added.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="cookies" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06000F16 RID: 3862 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F16")]
|
||||
[Address(RVA = "0xDC7CC0", Offset = "0xDC6CC0", VA = "0x180DC7CC0")]
|
||||
public void Add(CookieCollection cookies)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the number of cookies contained in a <see cref="T:System.Net.CookieCollection" />.</summary>
|
||||
/// <returns>The number of cookies contained in a <see cref="T:System.Net.CookieCollection" />.</returns>
|
||||
// Token: 0x170002E2 RID: 738
|
||||
// (get) Token: 0x06000F17 RID: 3863 RVA: 0x00007608 File Offset: 0x00005808
|
||||
[Token(Token = "0x170002E2")]
|
||||
public int Count
|
||||
{
|
||||
[Token(Token = "0x6000F17")]
|
||||
[Address(RVA = "0x8E1280", Offset = "0x8E0280", VA = "0x1808E1280", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a value that indicates whether access to a <see cref="T:System.Net.CookieCollection" /> is thread safe.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if access to the <see cref="T:System.Net.CookieCollection" /> is thread safe; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
// Token: 0x170002E3 RID: 739
|
||||
// (get) Token: 0x06000F18 RID: 3864 RVA: 0x00007620 File Offset: 0x00005820
|
||||
[Token(Token = "0x170002E3")]
|
||||
public bool IsSynchronized
|
||||
{
|
||||
[Token(Token = "0x6000F18")]
|
||||
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets an object to synchronize access to the <see cref="T:System.Net.CookieCollection" />.</summary>
|
||||
/// <returns>An object to synchronize access to the <see cref="T:System.Net.CookieCollection" />.</returns>
|
||||
// Token: 0x170002E4 RID: 740
|
||||
// (get) Token: 0x06000F19 RID: 3865 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002E4")]
|
||||
public object SyncRoot
|
||||
{
|
||||
[Token(Token = "0x6000F19")]
|
||||
[Address(RVA = "0x4A65C0", Offset = "0x4A55C0", VA = "0x1804A65C0", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Copies the elements of a <see cref="T:System.Net.CookieCollection" /> to an instance of the <see cref="T:System.Array" /> class, starting at a particular index.</summary>
|
||||
/// <param name="array">The target <see cref="T:System.Array" /> to which the <see cref="T:System.Net.CookieCollection" /> will be copied.</param>
|
||||
/// <param name="index">The zero-based index in the target <see cref="T:System.Array" /> where copying begins.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="array" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">
|
||||
/// <paramref name="index" /> is less than zero.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="array" /> is multidimensional.
|
||||
/// -or-
|
||||
/// The number of elements in this <see cref="T:System.Net.CookieCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
|
||||
/// <exception cref="T:System.InvalidCastException">The elements in this <see cref="T:System.Net.CookieCollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
|
||||
// Token: 0x06000F1A RID: 3866 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F1A")]
|
||||
[Address(RVA = "0xDC8010", Offset = "0xDC7010", VA = "0x180DC8010", Slot = "4")]
|
||||
public void CopyTo(Array array, int index)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F1B RID: 3867 RVA: 0x00007638 File Offset: 0x00005838
|
||||
[Token(Token = "0x6000F1B")]
|
||||
[Address(RVA = "0xDC8670", Offset = "0xDC7670", VA = "0x180DC8670")]
|
||||
internal DateTime TimeStamp(CookieCollection.Stamp how)
|
||||
{
|
||||
return default(DateTime);
|
||||
}
|
||||
|
||||
// Token: 0x170002E5 RID: 741
|
||||
// (get) Token: 0x06000F1C RID: 3868 RVA: 0x00007650 File Offset: 0x00005850
|
||||
[Token(Token = "0x170002E5")]
|
||||
internal bool IsOtherVersionSeen
|
||||
{
|
||||
[Token(Token = "0x6000F1C")]
|
||||
[Address(RVA = "0x51F260", Offset = "0x51E260", VA = "0x18051F260")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000F1D RID: 3869 RVA: 0x00007668 File Offset: 0x00005868
|
||||
[Token(Token = "0x6000F1D")]
|
||||
[Address(RVA = "0xDC8310", Offset = "0xDC7310", VA = "0x180DC8310")]
|
||||
internal int InternalAdd(Cookie cookie, bool isStrict)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F1E RID: 3870 RVA: 0x00007680 File Offset: 0x00005880
|
||||
[Token(Token = "0x6000F1E")]
|
||||
[Address(RVA = "0xDC80D0", Offset = "0xDC70D0", VA = "0x180DC80D0")]
|
||||
internal int IndexOf(Cookie cookie)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F1F RID: 3871 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F1F")]
|
||||
[Address(RVA = "0xDC8640", Offset = "0xDC7640", VA = "0x180DC8640")]
|
||||
internal void RemoveAt(int idx)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets an enumerator that can iterate through a <see cref="T:System.Net.CookieCollection" />.</summary>
|
||||
/// <returns>An instance of an implementation of an <see cref="T:System.Collections.IEnumerator" /> interface that can iterate through a <see cref="T:System.Net.CookieCollection" />.</returns>
|
||||
// Token: 0x06000F20 RID: 3872 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F20")]
|
||||
[Address(RVA = "0xDC8040", Offset = "0xDC7040", VA = "0x180DC8040", Slot = "8")]
|
||||
public IEnumerator GetEnumerator()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x040008F1 RID: 2289
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40008F1")]
|
||||
internal int m_version;
|
||||
|
||||
// Token: 0x040008F2 RID: 2290
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40008F2")]
|
||||
private ArrayList m_list;
|
||||
|
||||
// Token: 0x040008F3 RID: 2291
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40008F3")]
|
||||
private DateTime m_TimeStamp;
|
||||
|
||||
// Token: 0x040008F4 RID: 2292
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x40008F4")]
|
||||
private bool m_has_other_versions;
|
||||
|
||||
// Token: 0x040008F5 RID: 2293
|
||||
[FieldOffset(Offset = "0x29")]
|
||||
[Token(Token = "0x40008F5")]
|
||||
[OptionalField]
|
||||
private bool m_IsReadOnly;
|
||||
|
||||
// Token: 0x0200025C RID: 604
|
||||
[Token(Token = "0x200025C")]
|
||||
internal enum Stamp
|
||||
{
|
||||
// Token: 0x040008F7 RID: 2295
|
||||
[Token(Token = "0x40008F7")]
|
||||
Check,
|
||||
// Token: 0x040008F8 RID: 2296
|
||||
[Token(Token = "0x40008F8")]
|
||||
Set,
|
||||
// Token: 0x040008F9 RID: 2297
|
||||
[Token(Token = "0x40008F9")]
|
||||
SetToUnused,
|
||||
// Token: 0x040008FA RID: 2298
|
||||
[Token(Token = "0x40008FA")]
|
||||
SetToMaxUsed
|
||||
}
|
||||
|
||||
// Token: 0x0200025D RID: 605
|
||||
[Token(Token = "0x200025D")]
|
||||
private class CookieCollectionEnumerator : IEnumerator
|
||||
{
|
||||
// Token: 0x06000F21 RID: 3873 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F21")]
|
||||
[Address(RVA = "0xDC7C60", Offset = "0xDC6C60", VA = "0x180DC7C60")]
|
||||
internal CookieCollectionEnumerator(CookieCollection cookies)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002E6 RID: 742
|
||||
// (get) Token: 0x06000F22 RID: 3874 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002E6")]
|
||||
object IEnumerator.Current
|
||||
{
|
||||
[Token(Token = "0x6000F22")]
|
||||
[Address(RVA = "0xDC7B70", Offset = "0xDC6B70", VA = "0x180DC7B70", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000F23 RID: 3875 RVA: 0x00007698 File Offset: 0x00005898
|
||||
[Token(Token = "0x6000F23")]
|
||||
[Address(RVA = "0xDC7AC0", Offset = "0xDC6AC0", VA = "0x180DC7AC0", Slot = "4")]
|
||||
bool IEnumerator.MoveNext()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000F24 RID: 3876 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F24")]
|
||||
[Address(RVA = "0xB8E310", Offset = "0xB8D310", VA = "0x180B8E310", Slot = "6")]
|
||||
void IEnumerator.Reset()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x040008FB RID: 2299
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40008FB")]
|
||||
private CookieCollection m_cookies;
|
||||
|
||||
// Token: 0x040008FC RID: 2300
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40008FC")]
|
||||
private int m_count;
|
||||
|
||||
// Token: 0x040008FD RID: 2301
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x40008FD")]
|
||||
private int m_index;
|
||||
|
||||
// Token: 0x040008FE RID: 2302
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40008FE")]
|
||||
private int m_version;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,145 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides a container for a collection of <see cref="T:System.Net.CookieCollection" /> objects.</summary>
|
||||
// Token: 0x0200025F RID: 607
|
||||
[Token(Token = "0x200025F")]
|
||||
[Serializable]
|
||||
public class CookieContainer
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.CookieContainer" /> class.</summary>
|
||||
// Token: 0x06000F28 RID: 3880 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F28")]
|
||||
[Address(RVA = "0xDCB710", Offset = "0xDCA710", VA = "0x180DCB710")]
|
||||
public CookieContainer()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F29 RID: 3881 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F29")]
|
||||
[Address(RVA = "0xDC8900", Offset = "0xDC7900", VA = "0x180DC8900")]
|
||||
private void AddRemoveDomain(string key, PathList value)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F2A RID: 3882 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F2A")]
|
||||
[Address(RVA = "0xDC8A10", Offset = "0xDC7A10", VA = "0x180DC8A10")]
|
||||
internal void Add(Cookie cookie, bool throwOnError)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F2B RID: 3883 RVA: 0x000076C8 File Offset: 0x000058C8
|
||||
[Token(Token = "0x6000F2B")]
|
||||
[Address(RVA = "0xDC90D0", Offset = "0xDC80D0", VA = "0x180DC90D0")]
|
||||
private bool AgeCookies(string domain)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000F2C RID: 3884 RVA: 0x000076E0 File Offset: 0x000058E0
|
||||
[Token(Token = "0x6000F2C")]
|
||||
[Address(RVA = "0xDCA990", Offset = "0xDC9990", VA = "0x180DCA990")]
|
||||
private int ExpireCollection(CookieCollection cc)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F2D RID: 3885 RVA: 0x000076F8 File Offset: 0x000058F8
|
||||
[Token(Token = "0x6000F2D")]
|
||||
[Address(RVA = "0xDCB130", Offset = "0xDCA130", VA = "0x180DCB130")]
|
||||
internal bool IsLocalDomain(string host)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000F2E RID: 3886 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F2E")]
|
||||
[Address(RVA = "0xDCA390", Offset = "0xDC9390", VA = "0x180DCA390")]
|
||||
internal CookieCollection CookieCutter(Uri uri, string headerName, string setCookieHeader, bool isThrow)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F2F RID: 3887 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F2F")]
|
||||
[Address(RVA = "0xDCAE20", Offset = "0xDC9E20", VA = "0x180DCAE20")]
|
||||
internal CookieCollection InternalGetCookies(Uri uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F30 RID: 3888 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F30")]
|
||||
[Address(RVA = "0xDC9D80", Offset = "0xDC8D80", VA = "0x180DC9D80")]
|
||||
private void BuildCookieCollectionFromDomainMatches(Uri uri, bool isSecure, int port, CookieCollection cookies, List<string> domainAttribute, bool matchOnlyPlainCookie)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F31 RID: 3889 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F31")]
|
||||
[Address(RVA = "0xDCB440", Offset = "0xDCA440", VA = "0x180DCB440")]
|
||||
private void MergeUpdateCollections(CookieCollection destination, CookieCollection source, int port, bool isSecure, bool isPlainOnly)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the HTTP cookie header that contains the HTTP cookies that represent the <see cref="T:System.Net.Cookie" /> instances that are associated with a specific URI.</summary>
|
||||
/// <param name="uri">The URI of the <see cref="T:System.Net.Cookie" /> instances desired.</param>
|
||||
/// <returns>An HTTP cookie header, with strings representing <see cref="T:System.Net.Cookie" /> instances delimited by semicolons.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="uri" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06000F32 RID: 3890 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F32")]
|
||||
[Address(RVA = "0xDCAAD0", Offset = "0xDC9AD0", VA = "0x180DCAAD0")]
|
||||
public string GetCookieHeader(Uri uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F33 RID: 3891 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F33")]
|
||||
[Address(RVA = "0xDCAB90", Offset = "0xDC9B90", VA = "0x180DCAB90")]
|
||||
internal string GetCookieHeader(Uri uri, out string optCookie2)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04000901 RID: 2305
|
||||
[Token(Token = "0x4000901")]
|
||||
private static readonly HeaderVariantInfo[] HeaderInfo;
|
||||
|
||||
// Token: 0x04000902 RID: 2306
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000902")]
|
||||
private Hashtable m_domainTable;
|
||||
|
||||
// Token: 0x04000903 RID: 2307
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000903")]
|
||||
private int m_maxCookieSize;
|
||||
|
||||
// Token: 0x04000904 RID: 2308
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x4000904")]
|
||||
private int m_maxCookies;
|
||||
|
||||
// Token: 0x04000905 RID: 2309
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000905")]
|
||||
private int m_maxCookiesPerDomain;
|
||||
|
||||
// Token: 0x04000906 RID: 2310
|
||||
[FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x4000906")]
|
||||
private int m_count;
|
||||
|
||||
// Token: 0x04000907 RID: 2311
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000907")]
|
||||
private string m_fqdnMyDomain;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>The exception that is thrown when an error is made adding a <see cref="T:System.Net.Cookie" /> to a <see cref="T:System.Net.CookieContainer" />.</summary>
|
||||
// Token: 0x02000262 RID: 610
|
||||
[Token(Token = "0x2000262")]
|
||||
[Serializable]
|
||||
public class CookieException : FormatException, ISerializable
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.CookieException" /> class.</summary>
|
||||
// Token: 0x06000F40 RID: 3904 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F40")]
|
||||
[Address(RVA = "0xDCB7E0", Offset = "0xDCA7E0", VA = "0x180DCB7E0")]
|
||||
public CookieException()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F41 RID: 3905 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F41")]
|
||||
[Address(RVA = "0xDCB800", Offset = "0xDCA800", VA = "0x180DCB800")]
|
||||
internal CookieException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F42 RID: 3906 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F42")]
|
||||
[Address(RVA = "0xDCB7F0", Offset = "0xDCA7F0", VA = "0x180DCB7F0")]
|
||||
internal CookieException(string message, Exception inner)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.CookieException" /> class with specific values of <paramref name="serializationInfo" /> and <paramref name="streamingContext" />.</summary>
|
||||
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
|
||||
/// <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
|
||||
// Token: 0x06000F43 RID: 3907 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F43")]
|
||||
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
|
||||
protected CookieException(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.CookieException" />.</summary>
|
||||
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
|
||||
/// <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
|
||||
// Token: 0x06000F44 RID: 3908 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F44")]
|
||||
[Address(RVA = "0x7754D0", Offset = "0x7744D0", VA = "0x1807754D0", Slot = "4")]
|
||||
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.CookieException" />.</summary>
|
||||
/// <param name="serializationInfo">The object that holds the serialized object data. The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
|
||||
/// <param name="streamingContext">The contextual information about the source or destination. A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
|
||||
// Token: 0x06000F45 RID: 3909 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F45")]
|
||||
[Address(RVA = "0x7754D0", Offset = "0x7744D0", VA = "0x1807754D0", Slot = "10")]
|
||||
public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000259 RID: 601
|
||||
[Token(Token = "0x2000259")]
|
||||
internal class CookieParser
|
||||
{
|
||||
// Token: 0x06000F0E RID: 3854 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F0E")]
|
||||
[Address(RVA = "0xDCC240", Offset = "0xDCB240", VA = "0x180DCC240")]
|
||||
internal CookieParser(string cookieString)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F0F RID: 3855 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F0F")]
|
||||
[Address(RVA = "0xDCB8B0", Offset = "0xDCA8B0", VA = "0x180DCB8B0")]
|
||||
internal Cookie Get()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F10 RID: 3856 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F10")]
|
||||
[Address(RVA = "0xDCB810", Offset = "0xDCA810", VA = "0x180DCB810")]
|
||||
internal static string CheckQuoted(string value)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x040008F0 RID: 2288
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40008F0")]
|
||||
private CookieTokenizer m_tokenizer;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000256 RID: 598
|
||||
[Token(Token = "0x2000256")]
|
||||
internal enum CookieToken
|
||||
{
|
||||
// Token: 0x040008CE RID: 2254
|
||||
[Token(Token = "0x40008CE")]
|
||||
Nothing,
|
||||
// Token: 0x040008CF RID: 2255
|
||||
[Token(Token = "0x40008CF")]
|
||||
NameValuePair,
|
||||
// Token: 0x040008D0 RID: 2256
|
||||
[Token(Token = "0x40008D0")]
|
||||
Attribute,
|
||||
// Token: 0x040008D1 RID: 2257
|
||||
[Token(Token = "0x40008D1")]
|
||||
EndToken,
|
||||
// Token: 0x040008D2 RID: 2258
|
||||
[Token(Token = "0x40008D2")]
|
||||
EndCookie,
|
||||
// Token: 0x040008D3 RID: 2259
|
||||
[Token(Token = "0x40008D3")]
|
||||
End,
|
||||
// Token: 0x040008D4 RID: 2260
|
||||
[Token(Token = "0x40008D4")]
|
||||
Equals,
|
||||
// Token: 0x040008D5 RID: 2261
|
||||
[Token(Token = "0x40008D5")]
|
||||
Comment,
|
||||
// Token: 0x040008D6 RID: 2262
|
||||
[Token(Token = "0x40008D6")]
|
||||
CommentUrl,
|
||||
// Token: 0x040008D7 RID: 2263
|
||||
[Token(Token = "0x40008D7")]
|
||||
CookieName,
|
||||
// Token: 0x040008D8 RID: 2264
|
||||
[Token(Token = "0x40008D8")]
|
||||
Discard,
|
||||
// Token: 0x040008D9 RID: 2265
|
||||
[Token(Token = "0x40008D9")]
|
||||
Domain,
|
||||
// Token: 0x040008DA RID: 2266
|
||||
[Token(Token = "0x40008DA")]
|
||||
Expires,
|
||||
// Token: 0x040008DB RID: 2267
|
||||
[Token(Token = "0x40008DB")]
|
||||
MaxAge,
|
||||
// Token: 0x040008DC RID: 2268
|
||||
[Token(Token = "0x40008DC")]
|
||||
Path,
|
||||
// Token: 0x040008DD RID: 2269
|
||||
[Token(Token = "0x40008DD")]
|
||||
Port,
|
||||
// Token: 0x040008DE RID: 2270
|
||||
[Token(Token = "0x40008DE")]
|
||||
Secure,
|
||||
// Token: 0x040008DF RID: 2271
|
||||
[Token(Token = "0x40008DF")]
|
||||
HttpOnly,
|
||||
// Token: 0x040008E0 RID: 2272
|
||||
[Token(Token = "0x40008E0")]
|
||||
Unknown,
|
||||
// Token: 0x040008E1 RID: 2273
|
||||
[Token(Token = "0x40008E1")]
|
||||
Version
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,265 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000257 RID: 599
|
||||
[Token(Token = "0x2000257")]
|
||||
internal class CookieTokenizer
|
||||
{
|
||||
// Token: 0x06000EF9 RID: 3833 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000EF9")]
|
||||
[Address(RVA = "0xB25150", Offset = "0xB24150", VA = "0x180B25150")]
|
||||
internal CookieTokenizer(string tokenStream)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002DA RID: 730
|
||||
// (get) Token: 0x06000EFA RID: 3834 RVA: 0x00007518 File Offset: 0x00005718
|
||||
// (set) Token: 0x06000EFB RID: 3835 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002DA")]
|
||||
internal bool EndOfCookie
|
||||
{
|
||||
[Token(Token = "0x6000EFA")]
|
||||
[Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6000EFB")]
|
||||
[Address(RVA = "0x62ADC0", Offset = "0x629DC0", VA = "0x18062ADC0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002DB RID: 731
|
||||
// (get) Token: 0x06000EFC RID: 3836 RVA: 0x00007530 File Offset: 0x00005730
|
||||
[Token(Token = "0x170002DB")]
|
||||
internal bool Eof
|
||||
{
|
||||
[Token(Token = "0x6000EFC")]
|
||||
[Address(RVA = "0xB25190", Offset = "0xB24190", VA = "0x180B25190")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002DC RID: 732
|
||||
// (get) Token: 0x06000EFD RID: 3837 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000EFE RID: 3838 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002DC")]
|
||||
internal string Name
|
||||
{
|
||||
[Token(Token = "0x6000EFD")]
|
||||
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000EFE")]
|
||||
[Address(RVA = "0x415810", Offset = "0x414810", VA = "0x180415810")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002DD RID: 733
|
||||
// (get) Token: 0x06000EFF RID: 3839 RVA: 0x00007548 File Offset: 0x00005748
|
||||
// (set) Token: 0x06000F00 RID: 3840 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002DD")]
|
||||
internal bool Quoted
|
||||
{
|
||||
[Token(Token = "0x6000EFF")]
|
||||
[Address(RVA = "0x51F260", Offset = "0x51E260", VA = "0x18051F260")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x6000F00")]
|
||||
[Address(RVA = "0x51F2B0", Offset = "0x51E2B0", VA = "0x18051F2B0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002DE RID: 734
|
||||
// (get) Token: 0x06000F01 RID: 3841 RVA: 0x00007560 File Offset: 0x00005760
|
||||
// (set) Token: 0x06000F02 RID: 3842 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002DE")]
|
||||
internal CookieToken Token
|
||||
{
|
||||
[Token(Token = "0x6000F01")]
|
||||
[Address(RVA = "0x4257C0", Offset = "0x4247C0", VA = "0x1804257C0")]
|
||||
get
|
||||
{
|
||||
return CookieToken.Nothing;
|
||||
}
|
||||
[Token(Token = "0x6000F02")]
|
||||
[Address(RVA = "0x4258B0", Offset = "0x4248B0", VA = "0x1804258B0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002DF RID: 735
|
||||
// (get) Token: 0x06000F03 RID: 3843 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000F04 RID: 3844 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002DF")]
|
||||
internal string Value
|
||||
{
|
||||
[Token(Token = "0x6000F03")]
|
||||
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000F04")]
|
||||
[Address(RVA = "0x417960", Offset = "0x416960", VA = "0x180417960")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000F05 RID: 3845 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F05")]
|
||||
[Address(RVA = "0xB245F0", Offset = "0xB235F0", VA = "0x180B245F0")]
|
||||
internal string Extract()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F06 RID: 3846 RVA: 0x00007578 File Offset: 0x00005778
|
||||
[Token(Token = "0x6000F06")]
|
||||
[Address(RVA = "0xB24670", Offset = "0xB23670", VA = "0x180B24670")]
|
||||
internal CookieToken FindNext(bool ignoreComma, bool ignoreEquals)
|
||||
{
|
||||
return CookieToken.Nothing;
|
||||
}
|
||||
|
||||
// Token: 0x06000F07 RID: 3847 RVA: 0x00007590 File Offset: 0x00005790
|
||||
[Token(Token = "0x6000F07")]
|
||||
[Address(RVA = "0xB248E0", Offset = "0xB238E0", VA = "0x180B248E0")]
|
||||
internal CookieToken Next(bool first, bool parseResponseCookies)
|
||||
{
|
||||
return CookieToken.Nothing;
|
||||
}
|
||||
|
||||
// Token: 0x06000F08 RID: 3848 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F08")]
|
||||
[Address(RVA = "0xB24A50", Offset = "0xB23A50", VA = "0x180B24A50")]
|
||||
internal void Reset()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F09 RID: 3849 RVA: 0x000075A8 File Offset: 0x000057A8
|
||||
[Token(Token = "0x6000F09")]
|
||||
[Address(RVA = "0xB24AC0", Offset = "0xB23AC0", VA = "0x180B24AC0")]
|
||||
internal CookieToken TokenFromName(bool parseResponseCookies)
|
||||
{
|
||||
return CookieToken.Nothing;
|
||||
}
|
||||
|
||||
// Token: 0x040008E2 RID: 2274
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40008E2")]
|
||||
private bool m_eofCookie;
|
||||
|
||||
// Token: 0x040008E3 RID: 2275
|
||||
[FieldOffset(Offset = "0x14")]
|
||||
[Token(Token = "0x40008E3")]
|
||||
private int m_index;
|
||||
|
||||
// Token: 0x040008E4 RID: 2276
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40008E4")]
|
||||
private int m_length;
|
||||
|
||||
// Token: 0x040008E5 RID: 2277
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40008E5")]
|
||||
private string m_name;
|
||||
|
||||
// Token: 0x040008E6 RID: 2278
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x40008E6")]
|
||||
private bool m_quoted;
|
||||
|
||||
// Token: 0x040008E7 RID: 2279
|
||||
[FieldOffset(Offset = "0x2C")]
|
||||
[Token(Token = "0x40008E7")]
|
||||
private int m_start;
|
||||
|
||||
// Token: 0x040008E8 RID: 2280
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x40008E8")]
|
||||
private CookieToken m_token;
|
||||
|
||||
// Token: 0x040008E9 RID: 2281
|
||||
[FieldOffset(Offset = "0x34")]
|
||||
[Token(Token = "0x40008E9")]
|
||||
private int m_tokenLength;
|
||||
|
||||
// Token: 0x040008EA RID: 2282
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x40008EA")]
|
||||
private string m_tokenStream;
|
||||
|
||||
// Token: 0x040008EB RID: 2283
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x40008EB")]
|
||||
private string m_value;
|
||||
|
||||
// Token: 0x040008EC RID: 2284
|
||||
[Token(Token = "0x40008EC")]
|
||||
private static CookieTokenizer.RecognizedAttribute[] RecognizedAttributes;
|
||||
|
||||
// Token: 0x040008ED RID: 2285
|
||||
[Token(Token = "0x40008ED")]
|
||||
private static CookieTokenizer.RecognizedAttribute[] RecognizedServerAttributes;
|
||||
|
||||
// Token: 0x02000258 RID: 600
|
||||
[Token(Token = "0x2000258")]
|
||||
private struct RecognizedAttribute
|
||||
{
|
||||
// Token: 0x06000F0B RID: 3851 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F0B")]
|
||||
[Address(RVA = "0x62FA90", Offset = "0x62EA90", VA = "0x18062FA90")]
|
||||
internal RecognizedAttribute(string name, CookieToken token)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002E0 RID: 736
|
||||
// (get) Token: 0x06000F0C RID: 3852 RVA: 0x000075C0 File Offset: 0x000057C0
|
||||
[Token(Token = "0x170002E0")]
|
||||
internal CookieToken Token
|
||||
{
|
||||
[Token(Token = "0x6000F0C")]
|
||||
[Address(RVA = "0x60FD70", Offset = "0x60ED70", VA = "0x18060FD70")]
|
||||
get
|
||||
{
|
||||
return CookieToken.Nothing;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000F0D RID: 3853 RVA: 0x000075D8 File Offset: 0x000057D8
|
||||
[Token(Token = "0x6000F0D")]
|
||||
[Address(RVA = "0xB3DB80", Offset = "0xB3CB80", VA = "0x180B3DB80")]
|
||||
internal bool IsEqualTo(string value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x040008EE RID: 2286
|
||||
[FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x40008EE")]
|
||||
private string m_name;
|
||||
|
||||
// Token: 0x040008EF RID: 2287
|
||||
[FieldOffset(Offset = "0x8")]
|
||||
[Token(Token = "0x40008EF")]
|
||||
private CookieToken m_token;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000254 RID: 596
|
||||
[Token(Token = "0x2000254")]
|
||||
internal enum CookieVariant
|
||||
{
|
||||
// Token: 0x040008AF RID: 2223
|
||||
[Token(Token = "0x40008AF")]
|
||||
Unknown,
|
||||
// Token: 0x040008B0 RID: 2224
|
||||
[Token(Token = "0x40008B0")]
|
||||
Plain,
|
||||
// Token: 0x040008B1 RID: 2225
|
||||
[Token(Token = "0x40008B1")]
|
||||
Rfc2109,
|
||||
// Token: 0x040008B2 RID: 2226
|
||||
[Token(Token = "0x40008B2")]
|
||||
Rfc2965,
|
||||
// Token: 0x040008B3 RID: 2227
|
||||
[Token(Token = "0x40008B3")]
|
||||
Default = 2
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides storage for multiple credentials.</summary>
|
||||
// Token: 0x0200021C RID: 540
|
||||
[Token(Token = "0x200021C")]
|
||||
public class CredentialCache
|
||||
{
|
||||
/// <summary>Gets the system credentials of the application.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.ICredentials" /> that represents the system credentials of the application.</returns>
|
||||
// Token: 0x1700028B RID: 651
|
||||
// (get) Token: 0x06000DCA RID: 3530 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700028B")]
|
||||
public static ICredentials DefaultCredentials
|
||||
{
|
||||
[Token(Token = "0x6000DCA")]
|
||||
[Address(RVA = "0xB251A0", Offset = "0xB241A0", VA = "0x180B251A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Represents the file compression and decompression encoding format to be used to compress the data received in response to an <see cref="T:System.Net.HttpWebRequest" />.</summary>
|
||||
// Token: 0x0200027E RID: 638
|
||||
[Token(Token = "0x200027E")]
|
||||
[Flags]
|
||||
public enum DecompressionMethods
|
||||
{
|
||||
/// <summary>Do not use compression.</summary>
|
||||
// Token: 0x0400096B RID: 2411
|
||||
[Token(Token = "0x400096B")]
|
||||
None = 0,
|
||||
/// <summary>Use the gZip compression-decompression algorithm.</summary>
|
||||
// Token: 0x0400096C RID: 2412
|
||||
[Token(Token = "0x400096C")]
|
||||
GZip = 1,
|
||||
/// <summary>Use the deflate compression-decompression algorithm.</summary>
|
||||
// Token: 0x0400096D RID: 2413
|
||||
[Token(Token = "0x400096D")]
|
||||
Deflate = 2
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200027F RID: 639
|
||||
[Token(Token = "0x200027F")]
|
||||
internal class DefaultCertificatePolicy
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,214 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Net.Sockets;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200026C RID: 620
|
||||
[Token(Token = "0x200026C")]
|
||||
internal class DelegatedStream : Stream
|
||||
{
|
||||
// Token: 0x06000F9C RID: 3996 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F9C")]
|
||||
[Address(RVA = "0xB25AE0", Offset = "0xB24AE0", VA = "0x180B25AE0")]
|
||||
protected DelegatedStream()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002FE RID: 766
|
||||
// (get) Token: 0x06000F9D RID: 3997 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002FE")]
|
||||
protected Stream BaseStream
|
||||
{
|
||||
[Token(Token = "0x6000F9D")]
|
||||
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002FF RID: 767
|
||||
// (get) Token: 0x06000F9E RID: 3998 RVA: 0x000078C0 File Offset: 0x00005AC0
|
||||
[Token(Token = "0x170002FF")]
|
||||
public override bool CanRead
|
||||
{
|
||||
[Token(Token = "0x6000F9E")]
|
||||
[Address(RVA = "0x4B7E10", Offset = "0x4B6E10", VA = "0x1804B7E10", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000300 RID: 768
|
||||
// (get) Token: 0x06000F9F RID: 3999 RVA: 0x000078D8 File Offset: 0x00005AD8
|
||||
[Token(Token = "0x17000300")]
|
||||
public override bool CanSeek
|
||||
{
|
||||
[Token(Token = "0x6000F9F")]
|
||||
[Address(RVA = "0x4B7E40", Offset = "0x4B6E40", VA = "0x1804B7E40", Slot = "8")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000301 RID: 769
|
||||
// (get) Token: 0x06000FA0 RID: 4000 RVA: 0x000078F0 File Offset: 0x00005AF0
|
||||
[Token(Token = "0x17000301")]
|
||||
public override bool CanWrite
|
||||
{
|
||||
[Token(Token = "0x6000FA0")]
|
||||
[Address(RVA = "0x4B7E70", Offset = "0x4B6E70", VA = "0x1804B7E70", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000302 RID: 770
|
||||
// (get) Token: 0x06000FA1 RID: 4001 RVA: 0x00007908 File Offset: 0x00005B08
|
||||
[Token(Token = "0x17000302")]
|
||||
public override long Length
|
||||
{
|
||||
[Token(Token = "0x6000FA1")]
|
||||
[Address(RVA = "0xB25B40", Offset = "0xB24B40", VA = "0x180B25B40", Slot = "10")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000303 RID: 771
|
||||
// (get) Token: 0x06000FA2 RID: 4002 RVA: 0x00007920 File Offset: 0x00005B20
|
||||
// (set) Token: 0x06000FA3 RID: 4003 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000303")]
|
||||
public override long Position
|
||||
{
|
||||
[Token(Token = "0x6000FA2")]
|
||||
[Address(RVA = "0xB25BF0", Offset = "0xB24BF0", VA = "0x180B25BF0", Slot = "11")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
[Token(Token = "0x6000FA3")]
|
||||
[Address(RVA = "0xB25CA0", Offset = "0xB24CA0", VA = "0x180B25CA0", Slot = "12")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000FA4 RID: 4004 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FA4")]
|
||||
[Address(RVA = "0xB25200", Offset = "0xB24200", VA = "0x180B25200", Slot = "19")]
|
||||
public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FA5 RID: 4005 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FA5")]
|
||||
[Address(RVA = "0xB25330", Offset = "0xB24330", VA = "0x180B25330", Slot = "22")]
|
||||
public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FA6 RID: 4006 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000FA6")]
|
||||
[Address(RVA = "0xB25460", Offset = "0xB24460", VA = "0x180B25460", Slot = "15")]
|
||||
public override void Close()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000FA7 RID: 4007 RVA: 0x00007938 File Offset: 0x00005B38
|
||||
[Token(Token = "0x6000FA7")]
|
||||
[Address(RVA = "0xB25490", Offset = "0xB24490", VA = "0x180B25490", Slot = "20")]
|
||||
public override int EndRead(IAsyncResult asyncResult)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000FA8 RID: 4008 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000FA8")]
|
||||
[Address(RVA = "0xB25540", Offset = "0xB24540", VA = "0x180B25540", Slot = "23")]
|
||||
public override void EndWrite(IAsyncResult asyncResult)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000FA9 RID: 4009 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000FA9")]
|
||||
[Address(RVA = "0x4B7C30", Offset = "0x4B6C30", VA = "0x1804B7C30", Slot = "17")]
|
||||
public override void Flush()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000FAA RID: 4010 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FAA")]
|
||||
[Address(RVA = "0x8B92B0", Offset = "0x8B82B0", VA = "0x1808B92B0", Slot = "18")]
|
||||
public override Task FlushAsync(CancellationToken cancellationToken)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FAB RID: 4011 RVA: 0x00007950 File Offset: 0x00005B50
|
||||
[Token(Token = "0x6000FAB")]
|
||||
[Address(RVA = "0xB256D0", Offset = "0xB246D0", VA = "0x180B256D0", Slot = "27")]
|
||||
public override int Read(byte[] buffer, int offset, int count)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000FAC RID: 4012 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FAC")]
|
||||
[Address(RVA = "0xB255F0", Offset = "0xB245F0", VA = "0x180B255F0", Slot = "21")]
|
||||
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000FAD RID: 4013 RVA: 0x00007968 File Offset: 0x00005B68
|
||||
[Token(Token = "0x6000FAD")]
|
||||
[Address(RVA = "0xB257B0", Offset = "0xB247B0", VA = "0x180B257B0", Slot = "25")]
|
||||
public override long Seek(long offset, SeekOrigin origin)
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
|
||||
// Token: 0x06000FAE RID: 4014 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000FAE")]
|
||||
[Address(RVA = "0xB25870", Offset = "0xB24870", VA = "0x180B25870", Slot = "26")]
|
||||
public override void SetLength(long value)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000FAF RID: 4015 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000FAF")]
|
||||
[Address(RVA = "0xB25A00", Offset = "0xB24A00", VA = "0x180B25A00", Slot = "29")]
|
||||
public override void Write(byte[] buffer, int offset, int count)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000FB0 RID: 4016 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000FB0")]
|
||||
[Address(RVA = "0xB25920", Offset = "0xB24920", VA = "0x180B25920", Slot = "24")]
|
||||
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04000939 RID: 2361
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000939")]
|
||||
private Stream stream;
|
||||
|
||||
// Token: 0x0400093A RID: 2362
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400093A")]
|
||||
private NetworkStream netStream;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000282 RID: 642
|
||||
[Token(Token = "0x2000282")]
|
||||
internal class DigestClient : IAuthenticationModule
|
||||
{
|
||||
// Token: 0x17000319 RID: 793
|
||||
// (get) Token: 0x0600101F RID: 4127 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000319")]
|
||||
private static Hashtable Cache
|
||||
{
|
||||
[Token(Token = "0x600101F")]
|
||||
[Address(RVA = "0xB26780", Offset = "0xB25780", VA = "0x180B26780")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001020 RID: 4128 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001020")]
|
||||
[Address(RVA = "0xB26020", Offset = "0xB25020", VA = "0x180B26020")]
|
||||
private static void CheckExpired(int count)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001021 RID: 4129 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001021")]
|
||||
[Address(RVA = "0xB25D50", Offset = "0xB24D50", VA = "0x180B25D50", Slot = "4")]
|
||||
public Authorization Authenticate(string challenge, WebRequest webRequest, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001022 RID: 4130 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001022")]
|
||||
[Address(RVA = "0xB26540", Offset = "0xB25540", VA = "0x180B26540", Slot = "5")]
|
||||
public Authorization PreAuthenticate(WebRequest webRequest, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x1700031A RID: 794
|
||||
// (get) Token: 0x06001023 RID: 4131 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700031A")]
|
||||
public string AuthenticationType
|
||||
{
|
||||
[Token(Token = "0x6001023")]
|
||||
[Address(RVA = "0xB26750", Offset = "0xB25750", VA = "0x180B26750", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001024 RID: 4132 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001024")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public DigestClient()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000979 RID: 2425
|
||||
[Token(Token = "0x4000979")]
|
||||
private static readonly Hashtable cache;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000280 RID: 640
|
||||
[Token(Token = "0x2000280")]
|
||||
internal class DigestHeaderParser
|
||||
{
|
||||
// Token: 0x06001005 RID: 4101 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001005")]
|
||||
[Address(RVA = "0xB27070", Offset = "0xB26070", VA = "0x180B27070")]
|
||||
public DigestHeaderParser(string header)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700030D RID: 781
|
||||
// (get) Token: 0x06001006 RID: 4102 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700030D")]
|
||||
public string Realm
|
||||
{
|
||||
[Token(Token = "0x6001006")]
|
||||
[Address(RVA = "0xB27220", Offset = "0xB26220", VA = "0x180B27220")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700030E RID: 782
|
||||
// (get) Token: 0x06001007 RID: 4103 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700030E")]
|
||||
public string Opaque
|
||||
{
|
||||
[Token(Token = "0x6001007")]
|
||||
[Address(RVA = "0xB271A0", Offset = "0xB261A0", VA = "0x180B271A0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700030F RID: 783
|
||||
// (get) Token: 0x06001008 RID: 4104 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700030F")]
|
||||
public string Nonce
|
||||
{
|
||||
[Token(Token = "0x6001008")]
|
||||
[Address(RVA = "0xB27160", Offset = "0xB26160", VA = "0x180B27160")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000310 RID: 784
|
||||
// (get) Token: 0x06001009 RID: 4105 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000310")]
|
||||
public string Algorithm
|
||||
{
|
||||
[Token(Token = "0x6001009")]
|
||||
[Address(RVA = "0xB27120", Offset = "0xB26120", VA = "0x180B27120")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000311 RID: 785
|
||||
// (get) Token: 0x0600100A RID: 4106 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000311")]
|
||||
public string QOP
|
||||
{
|
||||
[Token(Token = "0x600100A")]
|
||||
[Address(RVA = "0xB271E0", Offset = "0xB261E0", VA = "0x180B271E0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600100B RID: 4107 RVA: 0x00007AE8 File Offset: 0x00005CE8
|
||||
[Token(Token = "0x600100B")]
|
||||
[Address(RVA = "0xB26BD0", Offset = "0xB25BD0", VA = "0x180B26BD0")]
|
||||
public bool Parse()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x0600100C RID: 4108 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600100C")]
|
||||
[Address(RVA = "0xB26DE0", Offset = "0xB25DE0", VA = "0x180B26DE0")]
|
||||
private void SkipWhitespace()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600100D RID: 4109 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600100D")]
|
||||
[Address(RVA = "0xB26900", Offset = "0xB25900", VA = "0x180B26900")]
|
||||
private string GetKey()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600100E RID: 4110 RVA: 0x00007B00 File Offset: 0x00005D00
|
||||
[Token(Token = "0x600100E")]
|
||||
[Address(RVA = "0xB26990", Offset = "0xB25990", VA = "0x180B26990")]
|
||||
private bool GetKeywordAndValue(out string key, out string value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x0400096E RID: 2414
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400096E")]
|
||||
private string header;
|
||||
|
||||
// Token: 0x0400096F RID: 2415
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400096F")]
|
||||
private int length;
|
||||
|
||||
// Token: 0x04000970 RID: 2416
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x4000970")]
|
||||
private int pos;
|
||||
|
||||
// Token: 0x04000971 RID: 2417
|
||||
[Token(Token = "0x4000971")]
|
||||
private static string[] keywords;
|
||||
|
||||
// Token: 0x04000972 RID: 2418
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000972")]
|
||||
private string[] values;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,186 @@
|
||||
using System;
|
||||
using System.Security.Cryptography;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000281 RID: 641
|
||||
[Token(Token = "0x2000281")]
|
||||
internal class DigestSession
|
||||
{
|
||||
// Token: 0x06001011 RID: 4113 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001011")]
|
||||
[Address(RVA = "0xB27FB0", Offset = "0xB26FB0", VA = "0x180B27FB0")]
|
||||
public DigestSession()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17000312 RID: 786
|
||||
// (get) Token: 0x06001012 RID: 4114 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000312")]
|
||||
public string Algorithm
|
||||
{
|
||||
[Token(Token = "0x6001012")]
|
||||
[Address(RVA = "0xB28020", Offset = "0xB27020", VA = "0x180B28020")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000313 RID: 787
|
||||
// (get) Token: 0x06001013 RID: 4115 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000313")]
|
||||
public string Realm
|
||||
{
|
||||
[Token(Token = "0x6001013")]
|
||||
[Address(RVA = "0xB28210", Offset = "0xB27210", VA = "0x180B28210")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000314 RID: 788
|
||||
// (get) Token: 0x06001014 RID: 4116 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000314")]
|
||||
public string Nonce
|
||||
{
|
||||
[Token(Token = "0x6001014")]
|
||||
[Address(RVA = "0xB28150", Offset = "0xB27150", VA = "0x180B28150")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000315 RID: 789
|
||||
// (get) Token: 0x06001015 RID: 4117 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000315")]
|
||||
public string Opaque
|
||||
{
|
||||
[Token(Token = "0x6001015")]
|
||||
[Address(RVA = "0xB28190", Offset = "0xB27190", VA = "0x180B28190")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000316 RID: 790
|
||||
// (get) Token: 0x06001016 RID: 4118 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000316")]
|
||||
public string QOP
|
||||
{
|
||||
[Token(Token = "0x6001016")]
|
||||
[Address(RVA = "0xB281D0", Offset = "0xB271D0", VA = "0x180B281D0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000317 RID: 791
|
||||
// (get) Token: 0x06001017 RID: 4119 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000317")]
|
||||
public string CNonce
|
||||
{
|
||||
[Token(Token = "0x6001017")]
|
||||
[Address(RVA = "0xB28060", Offset = "0xB27060", VA = "0x180B28060")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001018 RID: 4120 RVA: 0x00007B18 File Offset: 0x00005D18
|
||||
[Token(Token = "0x6001018")]
|
||||
[Address(RVA = "0xB27A50", Offset = "0xB26A50", VA = "0x180B27A50")]
|
||||
public bool Parse(string challenge)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001019 RID: 4121 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001019")]
|
||||
[Address(RVA = "0xB27900", Offset = "0xB26900", VA = "0x180B27900")]
|
||||
private string HashToHexString(string toBeHashed)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600101A RID: 4122 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600101A")]
|
||||
[Address(RVA = "0xB27680", Offset = "0xB26680", VA = "0x180B27680")]
|
||||
private string HA1(string username, string password)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600101B RID: 4123 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600101B")]
|
||||
[Address(RVA = "0xB27810", Offset = "0xB26810", VA = "0x180B27810")]
|
||||
private string HA2(HttpWebRequest webRequest)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600101C RID: 4124 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600101C")]
|
||||
[Address(RVA = "0xB27BC0", Offset = "0xB26BC0", VA = "0x180B27BC0")]
|
||||
private string Response(string username, string password, HttpWebRequest webRequest)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600101D RID: 4125 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600101D")]
|
||||
[Address(RVA = "0xB27260", Offset = "0xB26260", VA = "0x180B27260")]
|
||||
public Authorization Authenticate(WebRequest webRequest, ICredentials credentials)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000318 RID: 792
|
||||
// (get) Token: 0x0600101E RID: 4126 RVA: 0x00007B30 File Offset: 0x00005D30
|
||||
[Token(Token = "0x17000318")]
|
||||
public DateTime LastUse
|
||||
{
|
||||
[Token(Token = "0x600101E")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return default(DateTime);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000973 RID: 2419
|
||||
[Token(Token = "0x4000973")]
|
||||
private static RandomNumberGenerator rng;
|
||||
|
||||
// Token: 0x04000974 RID: 2420
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000974")]
|
||||
private DateTime lastUse;
|
||||
|
||||
// Token: 0x04000975 RID: 2421
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000975")]
|
||||
private int _nc;
|
||||
|
||||
// Token: 0x04000976 RID: 2422
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000976")]
|
||||
private HashAlgorithm hash;
|
||||
|
||||
// Token: 0x04000977 RID: 2423
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000977")]
|
||||
private DigestHeaderParser parser;
|
||||
|
||||
// Token: 0x04000978 RID: 2424
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x4000978")]
|
||||
private string _cnonce;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,186 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides simple domain name resolution functionality.</summary>
|
||||
// Token: 0x02000283 RID: 643
|
||||
[Token(Token = "0x2000283")]
|
||||
public static class Dns
|
||||
{
|
||||
/// <summary>Asynchronously returns the Internet Protocol (IP) addresses for the specified host.</summary>
|
||||
/// <param name="hostNameOrAddress">The host name or IP address to resolve.</param>
|
||||
/// <param name="requestCallback">An <see cref="T:System.AsyncCallback" /> delegate that references the method to invoke when the operation is complete.</param>
|
||||
/// <param name="state">A user-defined object that contains information about the operation. This object is passed to the <paramref name="requestCallback" /> delegate when the operation is complete.</param>
|
||||
/// <returns>An <see cref="T:System.IAsyncResult" /> instance that references the asynchronous request.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="hostNameOrAddress" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="hostNameOrAddress" /> is greater than 255 characters.</exception>
|
||||
/// <exception cref="T:System.Net.Sockets.SocketException">An error is encountered when resolving <paramref name="hostNameOrAddress" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="hostNameOrAddress" /> is an invalid IP address.</exception>
|
||||
// Token: 0x06001026 RID: 4134 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001026")]
|
||||
[Address(RVA = "0xB28250", Offset = "0xB27250", VA = "0x180B28250")]
|
||||
public static IAsyncResult BeginGetHostAddresses(string hostNameOrAddress, AsyncCallback requestCallback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Ends an asynchronous request for DNS information.</summary>
|
||||
/// <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> instance returned by a call to the <see cref="M:System.Net.Dns.BeginGetHostAddresses(System.String,System.AsyncCallback,System.Object)" /> method.</param>
|
||||
/// <returns>An array of type <see cref="T:System.Net.IPAddress" /> that holds the IP addresses for the host specified by the <paramref name="hostNameOrAddress" /> parameter of <see cref="M:System.Net.Dns.BeginGetHostAddresses(System.String,System.AsyncCallback,System.Object)" />.</returns>
|
||||
// Token: 0x06001027 RID: 4135 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001027")]
|
||||
[Address(RVA = "0xB28380", Offset = "0xB27380", VA = "0x180B28380")]
|
||||
public static IPAddress[] EndGetHostAddresses(IAsyncResult asyncResult)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001028 RID: 4136 RVA: 0x00007B48 File Offset: 0x00005D48
|
||||
[Token(Token = "0x6001028")]
|
||||
[Address(RVA = "0xB28A40", Offset = "0xB27A40", VA = "0x180B28A40")]
|
||||
private static bool GetHostByName_internal(string host, out string h_name, out string[] h_aliases, out string[] h_addr_list, int hint)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001029 RID: 4137 RVA: 0x00007B60 File Offset: 0x00005D60
|
||||
[Token(Token = "0x6001029")]
|
||||
[Address(RVA = "0xB288D0", Offset = "0xB278D0", VA = "0x180B288D0")]
|
||||
private static bool GetHostByAddr_internal(string addr, out string h_name, out string[] h_aliases, out string[] h_addr_list, int hint)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x0600102A RID: 4138 RVA: 0x00007B78 File Offset: 0x00005D78
|
||||
[Token(Token = "0x600102A")]
|
||||
[Address(RVA = "0xB28F60", Offset = "0xB27F60", VA = "0x180B28F60")]
|
||||
private static bool GetHostName_internal(out string h_name)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x0600102B RID: 4139 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600102B")]
|
||||
[Address(RVA = "0xB284C0", Offset = "0xB274C0", VA = "0x180B284C0")]
|
||||
private static void Error_11001(string hostName)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600102C RID: 4140 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600102C")]
|
||||
[Address(RVA = "0xB28FB0", Offset = "0xB27FB0", VA = "0x180B28FB0")]
|
||||
private static IPHostEntry hostent_to_IPHostEntry(string originalHostName, string h_name, string[] h_aliases, string[] h_addrlist)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600102D RID: 4141 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600102D")]
|
||||
[Address(RVA = "0xB288E0", Offset = "0xB278E0", VA = "0x180B288E0")]
|
||||
private static IPHostEntry GetHostByAddressFromString(string address, bool parse)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Resolves a host name or IP address to an <see cref="T:System.Net.IPHostEntry" /> instance.</summary>
|
||||
/// <param name="hostNameOrAddress">The host name or IP address to resolve.</param>
|
||||
/// <returns>An <see cref="T:System.Net.IPHostEntry" /> instance that contains address information about the host specified in <paramref name="hostNameOrAddress" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">The <paramref name="hostNameOrAddress" /> parameter is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="hostNameOrAddress" /> parameter is greater than 255 characters.</exception>
|
||||
/// <exception cref="T:System.Net.Sockets.SocketException">An error was encountered when resolving the <paramref name="hostNameOrAddress" /> parameter.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">The <paramref name="hostNameOrAddress" /> parameter is an invalid IP address.</exception>
|
||||
// Token: 0x0600102E RID: 4142 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600102E")]
|
||||
[Address(RVA = "0xB28B40", Offset = "0xB27B40", VA = "0x180B28B40")]
|
||||
public static IPHostEntry GetHostEntry(string hostNameOrAddress)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Resolves an IP address to an <see cref="T:System.Net.IPHostEntry" /> instance.</summary>
|
||||
/// <param name="address">An IP address.</param>
|
||||
/// <returns>An <see cref="T:System.Net.IPHostEntry" /> instance that contains address information about the host specified in <paramref name="address" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="address" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.Net.Sockets.SocketException">An error is encountered when resolving <paramref name="address" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="address" /> is an invalid IP address.</exception>
|
||||
// Token: 0x0600102F RID: 4143 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600102F")]
|
||||
[Address(RVA = "0xB28E10", Offset = "0xB27E10", VA = "0x180B28E10")]
|
||||
public static IPHostEntry GetHostEntry(IPAddress address)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the Internet Protocol (IP) addresses for the specified host.</summary>
|
||||
/// <param name="hostNameOrAddress">The host name or IP address to resolve.</param>
|
||||
/// <returns>An array of type <see cref="T:System.Net.IPAddress" /> that holds the IP addresses for the host that is specified by the <paramref name="hostNameOrAddress" /> parameter.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="hostNameOrAddress" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="hostNameOrAddress" /> is greater than 255 characters.</exception>
|
||||
/// <exception cref="T:System.Net.Sockets.SocketException">An error is encountered when resolving <paramref name="hostNameOrAddress" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="hostNameOrAddress" /> is an invalid IP address.</exception>
|
||||
// Token: 0x06001030 RID: 4144 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001030")]
|
||||
[Address(RVA = "0xB28710", Offset = "0xB27710", VA = "0x180B28710")]
|
||||
public static IPAddress[] GetHostAddresses(string hostNameOrAddress)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets the DNS information for the specified DNS host name.</summary>
|
||||
/// <param name="hostName">The DNS name of the host.</param>
|
||||
/// <returns>An <see cref="T:System.Net.IPHostEntry" /> object that contains host information for the address specified in <paramref name="hostName" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="hostName" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="hostName" /> is greater than 255 characters.</exception>
|
||||
/// <exception cref="T:System.Net.Sockets.SocketException">An error is encountered when resolving <paramref name="hostName" />.</exception>
|
||||
// Token: 0x06001031 RID: 4145 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001031")]
|
||||
[Address(RVA = "0xB28A50", Offset = "0xB27A50", VA = "0x180B28A50")]
|
||||
[Obsolete]
|
||||
public static IPHostEntry GetHostByName(string hostName)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets the host name of the local computer.</summary>
|
||||
/// <returns>A string that contains the DNS host name of the local computer.</returns>
|
||||
/// <exception cref="T:System.Net.Sockets.SocketException">An error is encountered when resolving the local host name.</exception>
|
||||
// Token: 0x06001032 RID: 4146 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001032")]
|
||||
[Address(RVA = "0xB28F70", Offset = "0xB27F70", VA = "0x180B28F70")]
|
||||
public static string GetHostName()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the Internet Protocol (IP) addresses for the specified host as an asynchronous operation.</summary>
|
||||
/// <param name="hostNameOrAddress">The host name or IP address to resolve.</param>
|
||||
/// <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns an array of type <see cref="T:System.Net.IPAddress" /> that holds the IP addresses for the host that is specified by the <paramref name="hostNameOrAddress" /> parameter.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="hostNameOrAddress" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="hostNameOrAddress" /> is greater than 255 characters.</exception>
|
||||
/// <exception cref="T:System.Net.Sockets.SocketException">An error is encountered when resolving <paramref name="hostNameOrAddress" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="hostNameOrAddress" /> is an invalid IP address.</exception>
|
||||
// Token: 0x06001033 RID: 4147 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001033")]
|
||||
[Address(RVA = "0xB28530", Offset = "0xB27530", VA = "0x180B28530")]
|
||||
public static Task<IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x02000284 RID: 644
|
||||
// (Invoke) Token: 0x06001035 RID: 4149
|
||||
[Token(Token = "0x2000284")]
|
||||
private delegate IPAddress[] GetHostAddressesCallback(string hostName);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000253 RID: 595
|
||||
[Token(Token = "0x2000253")]
|
||||
[Serializable]
|
||||
internal sealed class EmptyWebProxy : IWebProxy
|
||||
{
|
||||
// Token: 0x06000ED0 RID: 3792 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000ED0")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public EmptyWebProxy()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000ED1 RID: 3793 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000ED1")]
|
||||
[Address(RVA = "0x4AA5C0", Offset = "0x4A95C0", VA = "0x1804AA5C0", Slot = "4")]
|
||||
public Uri GetProxy(Uri uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000ED2 RID: 3794 RVA: 0x000073F8 File Offset: 0x000055F8
|
||||
[Token(Token = "0x6000ED2")]
|
||||
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "5")]
|
||||
public bool IsBypassed(Uri uri)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x170002C4 RID: 708
|
||||
// (get) Token: 0x06000ED3 RID: 3795 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002C4")]
|
||||
public ICredentials Credentials
|
||||
{
|
||||
[Token(Token = "0x6000ED3")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040008AD RID: 2221
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40008AD")]
|
||||
[NonSerialized]
|
||||
private ICredentials m_credentials;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
using System;
|
||||
using System.Net.Sockets;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Identifies a network address. This is an <see langword="abstract" /> class.</summary>
|
||||
// Token: 0x0200021E RID: 542
|
||||
[Token(Token = "0x200021E")]
|
||||
[Serializable]
|
||||
public abstract class EndPoint
|
||||
{
|
||||
/// <summary>Gets the address family to which the endpoint belongs.</summary>
|
||||
/// <returns>One of the <see cref="T:System.Net.Sockets.AddressFamily" /> values.</returns>
|
||||
/// <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property when the property is not overridden in a descendant class.</exception>
|
||||
// Token: 0x1700028C RID: 652
|
||||
// (get) Token: 0x06000DCD RID: 3533 RVA: 0x00007020 File Offset: 0x00005220
|
||||
[Token(Token = "0x1700028C")]
|
||||
public virtual AddressFamily AddressFamily
|
||||
{
|
||||
[Token(Token = "0x6000DCD")]
|
||||
[Address(RVA = "0xB292A0", Offset = "0xB282A0", VA = "0x180B292A0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return AddressFamily.Unspecified;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Serializes endpoint information into a <see cref="T:System.Net.SocketAddress" /> instance.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.SocketAddress" /> instance that contains the endpoint information.</returns>
|
||||
/// <exception cref="T:System.NotImplementedException">Any attempt is made to access the method when the method is not overridden in a descendant class.</exception>
|
||||
// Token: 0x06000DCE RID: 3534 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000DCE")]
|
||||
[Address(RVA = "0xB29260", Offset = "0xB28260", VA = "0x180B29260", Slot = "5")]
|
||||
public virtual SocketAddress Serialize()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Creates an <see cref="T:System.Net.EndPoint" /> instance from a <see cref="T:System.Net.SocketAddress" /> instance.</summary>
|
||||
/// <param name="socketAddress">The socket address that serves as the endpoint for a connection.</param>
|
||||
/// <returns>A new <see cref="T:System.Net.EndPoint" /> instance that is initialized from the specified <see cref="T:System.Net.SocketAddress" /> instance.</returns>
|
||||
/// <exception cref="T:System.NotImplementedException">Any attempt is made to access the method when the method is not overridden in a descendant class.</exception>
|
||||
// Token: 0x06000DCF RID: 3535 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000DCF")]
|
||||
[Address(RVA = "0xB29220", Offset = "0xB28220", VA = "0x180B29220", Slot = "6")]
|
||||
public virtual EndPoint Create(SocketAddress socketAddress)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.EndPoint" /> class.</summary>
|
||||
// Token: 0x06000DD0 RID: 3536 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000DD0")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
protected EndPoint()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200022F RID: 559
|
||||
[Token(Token = "0x200022F")]
|
||||
internal static class ExceptionHelper
|
||||
{
|
||||
// Token: 0x17000299 RID: 665
|
||||
// (get) Token: 0x06000E07 RID: 3591 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000299")]
|
||||
internal static NotImplementedException MethodNotImplementedException
|
||||
{
|
||||
[Token(Token = "0x6000E07")]
|
||||
[Address(RVA = "0xB292E0", Offset = "0xB282E0", VA = "0x180B292E0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700029A RID: 666
|
||||
// (get) Token: 0x06000E08 RID: 3592 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700029A")]
|
||||
internal static NotImplementedException PropertyNotImplementedException
|
||||
{
|
||||
[Token(Token = "0x6000E08")]
|
||||
[Address(RVA = "0xB29350", Offset = "0xB28350", VA = "0x180B29350")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700029B RID: 667
|
||||
// (get) Token: 0x06000E09 RID: 3593 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700029B")]
|
||||
internal static WebException RequestAbortedException
|
||||
{
|
||||
[Token(Token = "0x6000E09")]
|
||||
[Address(RVA = "0xB293C0", Offset = "0xB283C0", VA = "0x180B293C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,387 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Threading;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides a file system implementation of the <see cref="T:System.Net.WebRequest" /> class.</summary>
|
||||
// Token: 0x02000263 RID: 611
|
||||
[Token(Token = "0x2000263")]
|
||||
[Serializable]
|
||||
public class FileWebRequest : WebRequest, ISerializable
|
||||
{
|
||||
// Token: 0x06000F46 RID: 3910 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F46")]
|
||||
[Address(RVA = "0xB2A810", Offset = "0xB29810", VA = "0x180B2A810")]
|
||||
internal FileWebRequest(Uri uri)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.FileWebRequest" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
|
||||
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information that is required to serialize the new <see cref="T:System.Net.FileWebRequest" /> object.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.FileWebRequest" /> object.</param>
|
||||
// Token: 0x06000F47 RID: 3911 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F47")]
|
||||
[Address(RVA = "0xB2A570", Offset = "0xB29570", VA = "0x180B2A570")]
|
||||
[Obsolete]
|
||||
protected FileWebRequest(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the required data to serialize the <see cref="T:System.Net.FileWebRequest" />.</summary>
|
||||
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized data for the <see cref="T:System.Net.FileWebRequest" />.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the destination of the serialized stream that is associated with the new <see cref="T:System.Net.FileWebRequest" />.</param>
|
||||
// Token: 0x06000F48 RID: 3912 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F48")]
|
||||
[Address(RVA = "0x77AA00", Offset = "0x779A00", VA = "0x18077AA00", Slot = "6")]
|
||||
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
|
||||
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
|
||||
// Token: 0x06000F49 RID: 3913 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F49")]
|
||||
[Address(RVA = "0xB29BD0", Offset = "0xB28BD0", VA = "0x180B29BD0", Slot = "7")]
|
||||
protected override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002ED RID: 749
|
||||
// (get) Token: 0x06000F4A RID: 3914 RVA: 0x00007758 File Offset: 0x00005958
|
||||
[Token(Token = "0x170002ED")]
|
||||
internal bool Aborted
|
||||
{
|
||||
[Token(Token = "0x6000F4A")]
|
||||
[Address(RVA = "0xB2A940", Offset = "0xB29940", VA = "0x180B2A940")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the content length of the data being sent.</summary>
|
||||
/// <returns>The number of bytes of request data being sent.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <see cref="P:System.Net.FileWebRequest.ContentLength" /> is less than 0.</exception>
|
||||
// Token: 0x170002EE RID: 750
|
||||
// (get) Token: 0x06000F4B RID: 3915 RVA: 0x00007770 File Offset: 0x00005970
|
||||
// (set) Token: 0x06000F4C RID: 3916 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002EE")]
|
||||
public override long ContentLength
|
||||
{
|
||||
[Token(Token = "0x6000F4B")]
|
||||
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680", Slot = "14")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
[Token(Token = "0x6000F4C")]
|
||||
[Address(RVA = "0xB2A950", Offset = "0xB29950", VA = "0x180B2A950", Slot = "15")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the content type of the data being sent. This property is reserved for future use.</summary>
|
||||
/// <returns>The content type of the data being sent.</returns>
|
||||
// Token: 0x170002EF RID: 751
|
||||
// (set) Token: 0x06000F4D RID: 3917 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002EF")]
|
||||
public override string ContentType
|
||||
{
|
||||
[Token(Token = "0x6000F4D")]
|
||||
[Address(RVA = "0xB2A9E0", Offset = "0xB299E0", VA = "0x180B2A9E0", Slot = "16")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the credentials that are associated with this request. This property is reserved for future use.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.ICredentials" /> that contains the authentication credentials that are associated with this request. The default is <see langword="null" />.</returns>
|
||||
// Token: 0x170002F0 RID: 752
|
||||
// (get) Token: 0x06000F4E RID: 3918 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000F4F RID: 3919 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002F0")]
|
||||
public override ICredentials Credentials
|
||||
{
|
||||
[Token(Token = "0x6000F4E")]
|
||||
[Address(RVA = "0x4975A0", Offset = "0x4965A0", VA = "0x1804975A0", Slot = "17")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000F4F")]
|
||||
[Address(RVA = "0x55BCF0", Offset = "0x55ACF0", VA = "0x18055BCF0", Slot = "18")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets a collection of the name/value pairs that are associated with the request. This property is reserved for future use.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains header name/value pairs associated with this request.</returns>
|
||||
// Token: 0x170002F1 RID: 753
|
||||
// (get) Token: 0x06000F50 RID: 3920 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002F1")]
|
||||
public override WebHeaderCollection Headers
|
||||
{
|
||||
[Token(Token = "0x6000F50")]
|
||||
[Address(RVA = "0x417710", Offset = "0x416710", VA = "0x180417710", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the protocol method used for the request. This property is reserved for future use.</summary>
|
||||
/// <returns>The protocol method to use in this request.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">The method is invalid.
|
||||
/// -or-
|
||||
/// The method is not supported.
|
||||
/// -or-
|
||||
/// Multiple methods were specified.</exception>
|
||||
// Token: 0x170002F2 RID: 754
|
||||
// (get) Token: 0x06000F51 RID: 3921 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000F52 RID: 3922 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002F2")]
|
||||
public override string Method
|
||||
{
|
||||
[Token(Token = "0x6000F51")]
|
||||
[Address(RVA = "0x417720", Offset = "0x416720", VA = "0x180417720", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000F52")]
|
||||
[Address(RVA = "0xB2AA40", Offset = "0xB29A40", VA = "0x180B2AA40", Slot = "10")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the network proxy to use for this request. This property is reserved for future use.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.IWebProxy" /> that indicates the network proxy to use for this request.</returns>
|
||||
// Token: 0x170002F3 RID: 755
|
||||
// (get) Token: 0x06000F53 RID: 3923 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06000F54 RID: 3924 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002F3")]
|
||||
public override IWebProxy Proxy
|
||||
{
|
||||
[Token(Token = "0x6000F53")]
|
||||
[Address(RVA = "0x4177D0", Offset = "0x4167D0", VA = "0x1804177D0", Slot = "19")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6000F54")]
|
||||
[Address(RVA = "0x417AC0", Offset = "0x416AC0", VA = "0x180417AC0", Slot = "20")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the length of time until the request times out.</summary>
|
||||
/// <returns>The time, in milliseconds, until the request times out, or the value <see cref="F:System.Threading.Timeout.Infinite" /> to indicate that the request does not time out.</returns>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The value specified is less than or equal to zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
|
||||
// Token: 0x170002F4 RID: 756
|
||||
// (get) Token: 0x06000F55 RID: 3925 RVA: 0x00007788 File Offset: 0x00005988
|
||||
[Token(Token = "0x170002F4")]
|
||||
public override int Timeout
|
||||
{
|
||||
[Token(Token = "0x6000F55")]
|
||||
[Address(RVA = "0x4969C0", Offset = "0x4959C0", VA = "0x1804969C0", Slot = "21")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the Uniform Resource Identifier (URI) of the request.</summary>
|
||||
/// <returns>A <see cref="T:System.Uri" /> that contains the URI of the request.</returns>
|
||||
// Token: 0x170002F5 RID: 757
|
||||
// (get) Token: 0x06000F56 RID: 3926 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002F5")]
|
||||
public override Uri RequestUri
|
||||
{
|
||||
[Token(Token = "0x6000F56")]
|
||||
[Address(RVA = "0x56D550", Offset = "0x56C550", VA = "0x18056D550", Slot = "11")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Begins an asynchronous request for a file system resource.</summary>
|
||||
/// <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
|
||||
/// <param name="state">An object that contains state information for this request.</param>
|
||||
/// <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to <see cref="M:System.Net.FileWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
|
||||
/// <exception cref="T:System.Net.WebException">The <see cref="T:System.Net.FileWebRequest" /> was aborted.</exception>
|
||||
// Token: 0x06000F57 RID: 3927 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F57")]
|
||||
[Address(RVA = "0xB297C0", Offset = "0xB287C0", VA = "0x180B297C0", Slot = "23")]
|
||||
public override IAsyncResult BeginGetResponse(AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Ends an asynchronous request for a file system resource.</summary>
|
||||
/// <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending request for a response.</param>
|
||||
/// <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the file system resource.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="asyncResult" /> is <see langword="null" />.</exception>
|
||||
// Token: 0x06000F58 RID: 3928 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F58")]
|
||||
[Address(RVA = "0xB299D0", Offset = "0xB289D0", VA = "0x180B299D0", Slot = "24")]
|
||||
public override WebResponse EndGetResponse(IAsyncResult asyncResult)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns a response to a file system request.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the file system resource.</returns>
|
||||
/// <exception cref="T:System.Net.WebException">The request timed out.</exception>
|
||||
// Token: 0x06000F59 RID: 3929 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F59")]
|
||||
[Address(RVA = "0xB2A260", Offset = "0xB29260", VA = "0x180B2A260", Slot = "22")]
|
||||
public override WebResponse GetResponse()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F5A RID: 3930 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F5A")]
|
||||
[Address(RVA = "0xB29DA0", Offset = "0xB28DA0", VA = "0x180B29DA0")]
|
||||
private static void GetRequestStreamCallback(object state)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F5B RID: 3931 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F5B")]
|
||||
[Address(RVA = "0xB29FD0", Offset = "0xB28FD0", VA = "0x180B29FD0")]
|
||||
private static void GetResponseCallback(object state)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F5C RID: 3932 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F5C")]
|
||||
[Address(RVA = "0xB2A440", Offset = "0xB29440", VA = "0x180B2A440")]
|
||||
internal void UnblockReader()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Cancels a request to an Internet resource.</summary>
|
||||
// Token: 0x06000F5D RID: 3933 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F5D")]
|
||||
[Address(RVA = "0xB29590", Offset = "0xB28590", VA = "0x180B29590", Slot = "25")]
|
||||
public override void Abort()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400090A RID: 2314
|
||||
[Token(Token = "0x400090A")]
|
||||
private static WaitCallback s_GetRequestStreamCallback;
|
||||
|
||||
// Token: 0x0400090B RID: 2315
|
||||
[Token(Token = "0x400090B")]
|
||||
private static WaitCallback s_GetResponseCallback;
|
||||
|
||||
// Token: 0x0400090C RID: 2316
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x400090C")]
|
||||
private string m_connectionGroupName;
|
||||
|
||||
// Token: 0x0400090D RID: 2317
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400090D")]
|
||||
private long m_contentLength;
|
||||
|
||||
// Token: 0x0400090E RID: 2318
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400090E")]
|
||||
private ICredentials m_credentials;
|
||||
|
||||
// Token: 0x0400090F RID: 2319
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x400090F")]
|
||||
private FileAccess m_fileAccess;
|
||||
|
||||
// Token: 0x04000910 RID: 2320
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x4000910")]
|
||||
private WebHeaderCollection m_headers;
|
||||
|
||||
// Token: 0x04000911 RID: 2321
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x4000911")]
|
||||
private string m_method;
|
||||
|
||||
// Token: 0x04000912 RID: 2322
|
||||
[FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x4000912")]
|
||||
private IWebProxy m_proxy;
|
||||
|
||||
// Token: 0x04000913 RID: 2323
|
||||
[FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x4000913")]
|
||||
private ManualResetEvent m_readerEvent;
|
||||
|
||||
// Token: 0x04000914 RID: 2324
|
||||
[FieldOffset(Offset = "0x78")]
|
||||
[Token(Token = "0x4000914")]
|
||||
private bool m_readPending;
|
||||
|
||||
// Token: 0x04000915 RID: 2325
|
||||
[FieldOffset(Offset = "0x80")]
|
||||
[Token(Token = "0x4000915")]
|
||||
private WebResponse m_response;
|
||||
|
||||
// Token: 0x04000916 RID: 2326
|
||||
[FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x4000916")]
|
||||
private Stream m_stream;
|
||||
|
||||
// Token: 0x04000917 RID: 2327
|
||||
[FieldOffset(Offset = "0x90")]
|
||||
[Token(Token = "0x4000917")]
|
||||
private bool m_syncHint;
|
||||
|
||||
// Token: 0x04000918 RID: 2328
|
||||
[FieldOffset(Offset = "0x94")]
|
||||
[Token(Token = "0x4000918")]
|
||||
private int m_timeout;
|
||||
|
||||
// Token: 0x04000919 RID: 2329
|
||||
[FieldOffset(Offset = "0x98")]
|
||||
[Token(Token = "0x4000919")]
|
||||
private Uri m_uri;
|
||||
|
||||
// Token: 0x0400091A RID: 2330
|
||||
[FieldOffset(Offset = "0xA0")]
|
||||
[Token(Token = "0x400091A")]
|
||||
private bool m_writePending;
|
||||
|
||||
// Token: 0x0400091B RID: 2331
|
||||
[FieldOffset(Offset = "0xA1")]
|
||||
[Token(Token = "0x400091B")]
|
||||
private bool m_writing;
|
||||
|
||||
// Token: 0x0400091C RID: 2332
|
||||
[FieldOffset(Offset = "0xA8")]
|
||||
[Token(Token = "0x400091C")]
|
||||
private LazyAsyncResult m_WriteAResult;
|
||||
|
||||
// Token: 0x0400091D RID: 2333
|
||||
[FieldOffset(Offset = "0xB0")]
|
||||
[Token(Token = "0x400091D")]
|
||||
private LazyAsyncResult m_ReadAResult;
|
||||
|
||||
// Token: 0x0400091E RID: 2334
|
||||
[FieldOffset(Offset = "0xB8")]
|
||||
[Token(Token = "0x400091E")]
|
||||
private int m_Aborted;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000264 RID: 612
|
||||
[Token(Token = "0x2000264")]
|
||||
internal class FileWebRequestCreator : IWebRequestCreate
|
||||
{
|
||||
// Token: 0x06000F5F RID: 3935 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F5F")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
internal FileWebRequestCreator()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F60 RID: 3936 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F60")]
|
||||
[Address(RVA = "0xB29430", Offset = "0xB28430", VA = "0x180B29430", Slot = "4")]
|
||||
public WebRequest Create(Uri uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,144 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides a file system implementation of the <see cref="T:System.Net.WebResponse" /> class.</summary>
|
||||
// Token: 0x02000266 RID: 614
|
||||
[Token(Token = "0x2000266")]
|
||||
[Serializable]
|
||||
public class FileWebResponse : WebResponse, ISerializable, ICloseEx
|
||||
{
|
||||
// Token: 0x06000F6C RID: 3948 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F6C")]
|
||||
[Address(RVA = "0xB2B050", Offset = "0xB2A050", VA = "0x180B2B050")]
|
||||
internal FileWebResponse(FileWebRequest request, Uri uri, FileAccess access, bool asyncHint)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.FileWebResponse" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
|
||||
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance that contains the information required to serialize the new <see cref="T:System.Net.FileWebResponse" /> instance.</param>
|
||||
/// <param name="streamingContext">An instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class that contains the source of the serialized stream associated with the new <see cref="T:System.Net.FileWebResponse" /> instance.</param>
|
||||
// Token: 0x06000F6D RID: 3949 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F6D")]
|
||||
[Address(RVA = "0xB2AEA0", Offset = "0xB29EA0", VA = "0x180B2AEA0")]
|
||||
[Obsolete]
|
||||
protected FileWebResponse(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.FileWebResponse" />.</summary>
|
||||
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> , which will hold the serialized data for the <see cref="T:System.Net.FileWebResponse" />.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> containing the destination of the serialized stream associated with the new <see cref="T:System.Net.FileWebResponse" />.</param>
|
||||
// Token: 0x06000F6E RID: 3950 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F6E")]
|
||||
[Address(RVA = "0x779A50", Offset = "0x778A50", VA = "0x180779A50", Slot = "6")]
|
||||
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
|
||||
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
|
||||
// Token: 0x06000F6F RID: 3951 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F6F")]
|
||||
[Address(RVA = "0xB2ABC0", Offset = "0xB29BC0", VA = "0x180B2ABC0", Slot = "8")]
|
||||
protected override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets a collection of header name/value pairs associated with the response.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains the header name/value pairs associated with the response.</returns>
|
||||
// Token: 0x170002F6 RID: 758
|
||||
// (get) Token: 0x06000F70 RID: 3952 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002F6")]
|
||||
public override WebHeaderCollection Headers
|
||||
{
|
||||
[Token(Token = "0x6000F70")]
|
||||
[Address(RVA = "0xB2B2A0", Offset = "0xB2A2A0", VA = "0x180B2B2A0", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the URI of the file system resource that provided the response.</summary>
|
||||
/// <returns>A <see cref="T:System.Uri" /> that contains the URI of the file system resource that provided the response.</returns>
|
||||
// Token: 0x170002F7 RID: 759
|
||||
// (get) Token: 0x06000F71 RID: 3953 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002F7")]
|
||||
public override Uri ResponseUri
|
||||
{
|
||||
[Token(Token = "0x6000F71")]
|
||||
[Address(RVA = "0xB2B2C0", Offset = "0xB2A2C0", VA = "0x180B2B2C0", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000F72 RID: 3954 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F72")]
|
||||
[Address(RVA = "0xB2AAF0", Offset = "0xB29AF0", VA = "0x180B2AAF0")]
|
||||
private void CheckDisposed()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Closes the response stream.</summary>
|
||||
// Token: 0x06000F73 RID: 3955 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F73")]
|
||||
[Address(RVA = "0xB2AB80", Offset = "0xB29B80", VA = "0x180B2AB80", Slot = "9")]
|
||||
public override void Close()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F74 RID: 3956 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F74")]
|
||||
[Address(RVA = "0xB2AD70", Offset = "0xB29D70", VA = "0x180B2AD70", Slot = "14")]
|
||||
void ICloseEx.CloseEx(CloseExState closeState)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Returns the data stream from the file system resource.</summary>
|
||||
/// <returns>A <see cref="T:System.IO.Stream" /> for reading data from the file system resource.</returns>
|
||||
// Token: 0x06000F75 RID: 3957 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F75")]
|
||||
[Address(RVA = "0xB2AD00", Offset = "0xB29D00", VA = "0x180B2AD00", Slot = "11")]
|
||||
public override Stream GetResponseStream()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x04000920 RID: 2336
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000920")]
|
||||
private bool m_closed;
|
||||
|
||||
// Token: 0x04000921 RID: 2337
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000921")]
|
||||
private long m_contentLength;
|
||||
|
||||
// Token: 0x04000922 RID: 2338
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000922")]
|
||||
private FileAccess m_fileAccess;
|
||||
|
||||
// Token: 0x04000923 RID: 2339
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x4000923")]
|
||||
private WebHeaderCollection m_headers;
|
||||
|
||||
// Token: 0x04000924 RID: 2340
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x4000924")]
|
||||
private Stream m_stream;
|
||||
|
||||
// Token: 0x04000925 RID: 2341
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x4000925")]
|
||||
private Uri m_uri;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000265 RID: 613
|
||||
[Token(Token = "0x2000265")]
|
||||
internal sealed class FileWebStream : FileStream, ICloseEx
|
||||
{
|
||||
// Token: 0x06000F61 RID: 3937 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F61")]
|
||||
[Address(RVA = "0xB2B910", Offset = "0xB2A910", VA = "0x180B2B910")]
|
||||
public FileWebStream(FileWebRequest request, string path, FileMode mode, FileAccess access, FileShare sharing)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F62 RID: 3938 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F62")]
|
||||
[Address(RVA = "0xB2B860", Offset = "0xB2A860", VA = "0x180B2B860")]
|
||||
public FileWebStream(FileWebRequest request, string path, FileMode mode, FileAccess access, FileShare sharing, int length, bool async)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F63 RID: 3939 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F63")]
|
||||
[Address(RVA = "0xB2B500", Offset = "0xB2A500", VA = "0x180B2B500", Slot = "16")]
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F64 RID: 3940 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F64")]
|
||||
[Address(RVA = "0xB2B760", Offset = "0xB2A760", VA = "0x180B2B760", Slot = "32")]
|
||||
void ICloseEx.CloseEx(CloseExState closeState)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F65 RID: 3941 RVA: 0x000077A0 File Offset: 0x000059A0
|
||||
[Token(Token = "0x6000F65")]
|
||||
[Address(RVA = "0xB2B6B0", Offset = "0xB2A6B0", VA = "0x180B2B6B0", Slot = "27")]
|
||||
public override int Read(byte[] buffer, int offset, int size)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F66 RID: 3942 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F66")]
|
||||
[Address(RVA = "0xB2B7B0", Offset = "0xB2A7B0", VA = "0x180B2B7B0", Slot = "29")]
|
||||
public override void Write(byte[] buffer, int offset, int size)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F67 RID: 3943 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F67")]
|
||||
[Address(RVA = "0xB2B2E0", Offset = "0xB2A2E0", VA = "0x180B2B2E0", Slot = "19")]
|
||||
public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F68 RID: 3944 RVA: 0x000077B8 File Offset: 0x000059B8
|
||||
[Token(Token = "0x6000F68")]
|
||||
[Address(RVA = "0xB2B590", Offset = "0xB2A590", VA = "0x180B2B590", Slot = "20")]
|
||||
public override int EndRead(IAsyncResult ar)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000F69 RID: 3945 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000F69")]
|
||||
[Address(RVA = "0xB2B3A0", Offset = "0xB2A3A0", VA = "0x180B2B3A0", Slot = "22")]
|
||||
public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000F6A RID: 3946 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F6A")]
|
||||
[Address(RVA = "0xB2B620", Offset = "0xB2A620", VA = "0x180B2B620", Slot = "23")]
|
||||
public override void EndWrite(IAsyncResult ar)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000F6B RID: 3947 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F6B")]
|
||||
[Address(RVA = "0xB2B460", Offset = "0xB2A460", VA = "0x180B2B460")]
|
||||
private void CheckError()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400091F RID: 2335
|
||||
[FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x400091F")]
|
||||
private FileWebRequest m_request;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,203 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000285 RID: 645
|
||||
[Token(Token = "0x2000285")]
|
||||
internal class FtpAsyncResult : IAsyncResult
|
||||
{
|
||||
// Token: 0x06001038 RID: 4152 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001038")]
|
||||
[Address(RVA = "0xB2BBA0", Offset = "0xB2ABA0", VA = "0x180B2BBA0")]
|
||||
public FtpAsyncResult(AsyncCallback callback, object state)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x1700031B RID: 795
|
||||
// (get) Token: 0x06001039 RID: 4153 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700031B")]
|
||||
public object AsyncState
|
||||
{
|
||||
[Token(Token = "0x6001039")]
|
||||
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700031C RID: 796
|
||||
// (get) Token: 0x0600103A RID: 4154 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700031C")]
|
||||
public WaitHandle AsyncWaitHandle
|
||||
{
|
||||
[Token(Token = "0x600103A")]
|
||||
[Address(RVA = "0xB2BC20", Offset = "0xB2AC20", VA = "0x180B2BC20", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700031D RID: 797
|
||||
// (get) Token: 0x0600103B RID: 4155 RVA: 0x00007B90 File Offset: 0x00005D90
|
||||
[Token(Token = "0x1700031D")]
|
||||
public bool CompletedSynchronously
|
||||
{
|
||||
[Token(Token = "0x600103B")]
|
||||
[Address(RVA = "0x41CF10", Offset = "0x41BF10", VA = "0x18041CF10", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700031E RID: 798
|
||||
// (get) Token: 0x0600103C RID: 4156 RVA: 0x00007BA8 File Offset: 0x00005DA8
|
||||
[Token(Token = "0x1700031E")]
|
||||
public bool IsCompleted
|
||||
{
|
||||
[Token(Token = "0x600103C")]
|
||||
[Address(RVA = "0xB2BD00", Offset = "0xB2AD00", VA = "0x180B2BD00", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700031F RID: 799
|
||||
// (get) Token: 0x0600103D RID: 4157 RVA: 0x00007BC0 File Offset: 0x00005DC0
|
||||
[Token(Token = "0x1700031F")]
|
||||
internal bool GotException
|
||||
{
|
||||
[Token(Token = "0x600103D")]
|
||||
[Address(RVA = "0xA4CD20", Offset = "0xA4BD20", VA = "0x180A4CD20")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000320 RID: 800
|
||||
// (get) Token: 0x0600103E RID: 4158 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000320")]
|
||||
internal Exception Exception
|
||||
{
|
||||
[Token(Token = "0x600103E")]
|
||||
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000321 RID: 801
|
||||
// (get) Token: 0x0600103F RID: 4159 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000321")]
|
||||
internal FtpWebResponse Response
|
||||
{
|
||||
[Token(Token = "0x600103F")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000322 RID: 802
|
||||
// (set) Token: 0x06001040 RID: 4160 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000322")]
|
||||
internal Stream Stream
|
||||
{
|
||||
[Token(Token = "0x6001040")]
|
||||
[Address(RVA = "0x415830", Offset = "0x414830", VA = "0x180415830")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001041 RID: 4161 RVA: 0x00007BD8 File Offset: 0x00005DD8
|
||||
[Token(Token = "0x6001041")]
|
||||
[Address(RVA = "0xB2BB20", Offset = "0xB2AB20", VA = "0x180B2BB20")]
|
||||
internal bool WaitUntilComplete(int timeout, bool exitContext)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001042 RID: 4162 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001042")]
|
||||
[Address(RVA = "0xB2BA60", Offset = "0xB2AA60", VA = "0x180B2BA60")]
|
||||
internal void SetCompleted(bool synch, Exception exc, FtpWebResponse response)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001043 RID: 4163 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001043")]
|
||||
[Address(RVA = "0xB2BA20", Offset = "0xB2AA20", VA = "0x180B2BA20")]
|
||||
internal void SetCompleted(bool synch, FtpWebResponse response)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001044 RID: 4164 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001044")]
|
||||
[Address(RVA = "0xB2BA40", Offset = "0xB2AA40", VA = "0x180B2BA40")]
|
||||
internal void SetCompleted(bool synch, Exception exc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001045 RID: 4165 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001045")]
|
||||
[Address(RVA = "0xB2B9B0", Offset = "0xB2A9B0", VA = "0x180B2B9B0")]
|
||||
internal void DoCallback()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400097A RID: 2426
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400097A")]
|
||||
private FtpWebResponse response;
|
||||
|
||||
// Token: 0x0400097B RID: 2427
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400097B")]
|
||||
private ManualResetEvent waitHandle;
|
||||
|
||||
// Token: 0x0400097C RID: 2428
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x400097C")]
|
||||
private Exception exception;
|
||||
|
||||
// Token: 0x0400097D RID: 2429
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x400097D")]
|
||||
private AsyncCallback callback;
|
||||
|
||||
// Token: 0x0400097E RID: 2430
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400097E")]
|
||||
private Stream stream;
|
||||
|
||||
// Token: 0x0400097F RID: 2431
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x400097F")]
|
||||
private object state;
|
||||
|
||||
// Token: 0x04000980 RID: 2432
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x4000980")]
|
||||
private bool completed;
|
||||
|
||||
// Token: 0x04000981 RID: 2433
|
||||
[FieldOffset(Offset = "0x41")]
|
||||
[Token(Token = "0x4000981")]
|
||||
private bool synch;
|
||||
|
||||
// Token: 0x04000982 RID: 2434
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x4000982")]
|
||||
private object locker;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,242 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000286 RID: 646
|
||||
[Token(Token = "0x2000286")]
|
||||
internal class FtpDataStream : Stream, IDisposable
|
||||
{
|
||||
// Token: 0x06001046 RID: 4166 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001046")]
|
||||
[Address(RVA = "0xB2CD70", Offset = "0xB2BD70", VA = "0x180B2CD70")]
|
||||
internal FtpDataStream(FtpWebRequest request, Stream stream, bool isRead)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17000323 RID: 803
|
||||
// (get) Token: 0x06001047 RID: 4167 RVA: 0x00007BF0 File Offset: 0x00005DF0
|
||||
[Token(Token = "0x17000323")]
|
||||
public override bool CanRead
|
||||
{
|
||||
[Token(Token = "0x6001047")]
|
||||
[Address(RVA = "0x51F230", Offset = "0x51E230", VA = "0x18051F230", Slot = "7")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000324 RID: 804
|
||||
// (get) Token: 0x06001048 RID: 4168 RVA: 0x00007C08 File Offset: 0x00005E08
|
||||
[Token(Token = "0x17000324")]
|
||||
public override bool CanWrite
|
||||
{
|
||||
[Token(Token = "0x6001048")]
|
||||
[Address(RVA = "0xB2CE30", Offset = "0xB2BE30", VA = "0x180B2CE30", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000325 RID: 805
|
||||
// (get) Token: 0x06001049 RID: 4169 RVA: 0x00007C20 File Offset: 0x00005E20
|
||||
[Token(Token = "0x17000325")]
|
||||
public override bool CanSeek
|
||||
{
|
||||
[Token(Token = "0x6001049")]
|
||||
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "8")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000326 RID: 806
|
||||
// (get) Token: 0x0600104A RID: 4170 RVA: 0x00007C38 File Offset: 0x00005E38
|
||||
[Token(Token = "0x17000326")]
|
||||
public override long Length
|
||||
{
|
||||
[Token(Token = "0x600104A")]
|
||||
[Address(RVA = "0xB2CE40", Offset = "0xB2BE40", VA = "0x180B2CE40", Slot = "10")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000327 RID: 807
|
||||
// (get) Token: 0x0600104B RID: 4171 RVA: 0x00007C50 File Offset: 0x00005E50
|
||||
// (set) Token: 0x0600104C RID: 4172 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000327")]
|
||||
public override long Position
|
||||
{
|
||||
[Token(Token = "0x600104B")]
|
||||
[Address(RVA = "0xB2CE90", Offset = "0xB2BE90", VA = "0x180B2CE90", Slot = "11")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
[Token(Token = "0x600104C")]
|
||||
[Address(RVA = "0xB2CEE0", Offset = "0xB2BEE0", VA = "0x180B2CEE0", Slot = "12")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600104D RID: 4173 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600104D")]
|
||||
[Address(RVA = "0xB2C230", Offset = "0xB2B230", VA = "0x180B2C230", Slot = "15")]
|
||||
public override void Close()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600104E RID: 4174 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600104E")]
|
||||
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "17")]
|
||||
public override void Flush()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600104F RID: 4175 RVA: 0x00007C68 File Offset: 0x00005E68
|
||||
[Token(Token = "0x600104F")]
|
||||
[Address(RVA = "0xB2C970", Offset = "0xB2B970", VA = "0x180B2C970", Slot = "25")]
|
||||
public override long Seek(long offset, SeekOrigin origin)
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
|
||||
// Token: 0x06001050 RID: 4176 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001050")]
|
||||
[Address(RVA = "0xB2C9C0", Offset = "0xB2B9C0", VA = "0x180B2C9C0", Slot = "26")]
|
||||
public override void SetLength(long value)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001051 RID: 4177 RVA: 0x00007C80 File Offset: 0x00005E80
|
||||
[Token(Token = "0x6001051")]
|
||||
[Address(RVA = "0xB2C620", Offset = "0xB2B620", VA = "0x180B2C620")]
|
||||
private int ReadInternal(byte[] buffer, int offset, int size)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06001052 RID: 4178 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001052")]
|
||||
[Address(RVA = "0xB2BDA0", Offset = "0xB2ADA0", VA = "0x180B2BDA0", Slot = "19")]
|
||||
public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback cb, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001053 RID: 4179 RVA: 0x00007C98 File Offset: 0x00005E98
|
||||
[Token(Token = "0x6001053")]
|
||||
[Address(RVA = "0xB2C2D0", Offset = "0xB2B2D0", VA = "0x180B2C2D0", Slot = "20")]
|
||||
public override int EndRead(IAsyncResult asyncResult)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06001054 RID: 4180 RVA: 0x00007CB0 File Offset: 0x00005EB0
|
||||
[Token(Token = "0x6001054")]
|
||||
[Address(RVA = "0xB2C7C0", Offset = "0xB2B7C0", VA = "0x180B2C7C0", Slot = "27")]
|
||||
public override int Read(byte[] buffer, int offset, int size)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06001055 RID: 4181 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001055")]
|
||||
[Address(RVA = "0xB2CA80", Offset = "0xB2BA80", VA = "0x180B2CA80")]
|
||||
private void WriteInternal(byte[] buffer, int offset, int size)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001056 RID: 4182 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001056")]
|
||||
[Address(RVA = "0xB2BFA0", Offset = "0xB2AFA0", VA = "0x180B2BFA0", Slot = "22")]
|
||||
public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback cb, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001057 RID: 4183 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001057")]
|
||||
[Address(RVA = "0xB2C440", Offset = "0xB2B440", VA = "0x180B2C440", Slot = "23")]
|
||||
public override void EndWrite(IAsyncResult asyncResult)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001058 RID: 4184 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001058")]
|
||||
[Address(RVA = "0xB2CBC0", Offset = "0xB2BBC0", VA = "0x180B2CBC0", Slot = "29")]
|
||||
public override void Write(byte[] buffer, int offset, int size)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001059 RID: 4185 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001059")]
|
||||
[Address(RVA = "0xB2C5A0", Offset = "0xB2B5A0", VA = "0x180B2C5A0", Slot = "1")]
|
||||
protected override void Finalize()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600105A RID: 4186 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600105A")]
|
||||
[Address(RVA = "0xB2CA10", Offset = "0xB2BA10", VA = "0x180B2CA10", Slot = "6")]
|
||||
void IDisposable.Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600105B RID: 4187 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600105B")]
|
||||
[Address(RVA = "0xB2C250", Offset = "0xB2B250", VA = "0x180B2C250", Slot = "16")]
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600105C RID: 4188 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600105C")]
|
||||
[Address(RVA = "0xB2C1A0", Offset = "0xB2B1A0", VA = "0x180B2C1A0")]
|
||||
private void CheckDisposed()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000983 RID: 2435
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000983")]
|
||||
private FtpWebRequest request;
|
||||
|
||||
// Token: 0x04000984 RID: 2436
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x4000984")]
|
||||
private Stream networkStream;
|
||||
|
||||
// Token: 0x04000985 RID: 2437
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x4000985")]
|
||||
private bool disposed;
|
||||
|
||||
// Token: 0x04000986 RID: 2438
|
||||
[FieldOffset(Offset = "0x39")]
|
||||
[Token(Token = "0x4000986")]
|
||||
private bool isRead;
|
||||
|
||||
// Token: 0x04000987 RID: 2439
|
||||
[FieldOffset(Offset = "0x3C")]
|
||||
[Token(Token = "0x4000987")]
|
||||
private int totalRead;
|
||||
|
||||
// Token: 0x02000287 RID: 647
|
||||
// (Invoke) Token: 0x0600105E RID: 4190
|
||||
[Token(Token = "0x2000287")]
|
||||
private delegate void WriteDelegate(byte[] buffer, int offset, int size);
|
||||
|
||||
// Token: 0x02000288 RID: 648
|
||||
// (Invoke) Token: 0x06001062 RID: 4194
|
||||
[Token(Token = "0x2000288")]
|
||||
private delegate int ReadDelegate(byte[] buffer, int offset, int size);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000289 RID: 649
|
||||
[Token(Token = "0x2000289")]
|
||||
internal class FtpRequestCreator : IWebRequestCreate
|
||||
{
|
||||
// Token: 0x06001065 RID: 4197 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001065")]
|
||||
[Address(RVA = "0xB2CF30", Offset = "0xB2BF30", VA = "0x180B2CF30", Slot = "4")]
|
||||
public WebRequest Create(Uri uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001066 RID: 4198 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001066")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public FtpRequestCreator()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200028A RID: 650
|
||||
[Token(Token = "0x200028A")]
|
||||
internal class FtpStatus
|
||||
{
|
||||
// Token: 0x06001067 RID: 4199 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001067")]
|
||||
[Address(RVA = "0x49A4C0", Offset = "0x4994C0", VA = "0x18049A4C0")]
|
||||
public FtpStatus(FtpStatusCode statusCode, string statusDescription)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x17000328 RID: 808
|
||||
// (get) Token: 0x06001068 RID: 4200 RVA: 0x00007CC8 File Offset: 0x00005EC8
|
||||
[Token(Token = "0x17000328")]
|
||||
public FtpStatusCode StatusCode
|
||||
{
|
||||
[Token(Token = "0x6001068")]
|
||||
[Address(RVA = "0x40F000", Offset = "0x40E000", VA = "0x18040F000")]
|
||||
get
|
||||
{
|
||||
return FtpStatusCode.Undefined;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000329 RID: 809
|
||||
// (get) Token: 0x06001069 RID: 4201 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000329")]
|
||||
public string StatusDescription
|
||||
{
|
||||
[Token(Token = "0x6001069")]
|
||||
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000988 RID: 2440
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000988")]
|
||||
private readonly FtpStatusCode statusCode;
|
||||
|
||||
// Token: 0x04000989 RID: 2441
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000989")]
|
||||
private readonly string statusDescription;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,160 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Specifies the status codes returned for a File Transfer Protocol (FTP) operation.</summary>
|
||||
// Token: 0x0200021F RID: 543
|
||||
[Token(Token = "0x200021F")]
|
||||
public enum FtpStatusCode
|
||||
{
|
||||
/// <summary>Included for completeness, this value is never returned by servers.</summary>
|
||||
// Token: 0x04000786 RID: 1926
|
||||
[Token(Token = "0x4000786")]
|
||||
Undefined,
|
||||
/// <summary>Specifies that the response contains a restart marker reply. The text of the description that accompanies this status contains the user data stream marker and the server marker.</summary>
|
||||
// Token: 0x04000787 RID: 1927
|
||||
[Token(Token = "0x4000787")]
|
||||
RestartMarker = 110,
|
||||
/// <summary>Specifies that the service is not available now; try your request later.</summary>
|
||||
// Token: 0x04000788 RID: 1928
|
||||
[Token(Token = "0x4000788")]
|
||||
ServiceTemporarilyNotAvailable = 120,
|
||||
/// <summary>Specifies that the data connection is already open and the requested transfer is starting.</summary>
|
||||
// Token: 0x04000789 RID: 1929
|
||||
[Token(Token = "0x4000789")]
|
||||
DataAlreadyOpen = 125,
|
||||
/// <summary>Specifies that the server is opening the data connection.</summary>
|
||||
// Token: 0x0400078A RID: 1930
|
||||
[Token(Token = "0x400078A")]
|
||||
OpeningData = 150,
|
||||
/// <summary>Specifies that the command completed successfully.</summary>
|
||||
// Token: 0x0400078B RID: 1931
|
||||
[Token(Token = "0x400078B")]
|
||||
CommandOK = 200,
|
||||
/// <summary>Specifies that the command is not implemented by the server because it is not needed.</summary>
|
||||
// Token: 0x0400078C RID: 1932
|
||||
[Token(Token = "0x400078C")]
|
||||
CommandExtraneous = 202,
|
||||
/// <summary>Specifies the status of a directory.</summary>
|
||||
// Token: 0x0400078D RID: 1933
|
||||
[Token(Token = "0x400078D")]
|
||||
DirectoryStatus = 212,
|
||||
/// <summary>Specifies the status of a file.</summary>
|
||||
// Token: 0x0400078E RID: 1934
|
||||
[Token(Token = "0x400078E")]
|
||||
FileStatus,
|
||||
/// <summary>Specifies the system type name using the system names published in the Assigned Numbers document published by the Internet Assigned Numbers Authority.</summary>
|
||||
// Token: 0x0400078F RID: 1935
|
||||
[Token(Token = "0x400078F")]
|
||||
SystemType = 215,
|
||||
/// <summary>Specifies that the server is ready for a user login operation.</summary>
|
||||
// Token: 0x04000790 RID: 1936
|
||||
[Token(Token = "0x4000790")]
|
||||
SendUserCommand = 220,
|
||||
/// <summary>Specifies that the server is closing the control connection.</summary>
|
||||
// Token: 0x04000791 RID: 1937
|
||||
[Token(Token = "0x4000791")]
|
||||
ClosingControl,
|
||||
/// <summary>Specifies that the server is closing the data connection and that the requested file action was successful.</summary>
|
||||
// Token: 0x04000792 RID: 1938
|
||||
[Token(Token = "0x4000792")]
|
||||
ClosingData = 226,
|
||||
/// <summary>Specifies that the server is entering passive mode.</summary>
|
||||
// Token: 0x04000793 RID: 1939
|
||||
[Token(Token = "0x4000793")]
|
||||
EnteringPassive,
|
||||
/// <summary>Specifies that the user is logged in and can send commands.</summary>
|
||||
// Token: 0x04000794 RID: 1940
|
||||
[Token(Token = "0x4000794")]
|
||||
LoggedInProceed = 230,
|
||||
/// <summary>Specifies that the server accepts the authentication mechanism specified by the client, and the exchange of security data is complete.</summary>
|
||||
// Token: 0x04000795 RID: 1941
|
||||
[Token(Token = "0x4000795")]
|
||||
ServerWantsSecureSession = 234,
|
||||
/// <summary>Specifies that the requested file action completed successfully.</summary>
|
||||
// Token: 0x04000796 RID: 1942
|
||||
[Token(Token = "0x4000796")]
|
||||
FileActionOK = 250,
|
||||
/// <summary>Specifies that the requested path name was created.</summary>
|
||||
// Token: 0x04000797 RID: 1943
|
||||
[Token(Token = "0x4000797")]
|
||||
PathnameCreated = 257,
|
||||
/// <summary>Specifies that the server expects a password to be supplied.</summary>
|
||||
// Token: 0x04000798 RID: 1944
|
||||
[Token(Token = "0x4000798")]
|
||||
SendPasswordCommand = 331,
|
||||
/// <summary>Specifies that the server requires a login account to be supplied.</summary>
|
||||
// Token: 0x04000799 RID: 1945
|
||||
[Token(Token = "0x4000799")]
|
||||
NeedLoginAccount,
|
||||
/// <summary>Specifies that the requested file action requires additional information.</summary>
|
||||
// Token: 0x0400079A RID: 1946
|
||||
[Token(Token = "0x400079A")]
|
||||
FileCommandPending = 350,
|
||||
/// <summary>Specifies that the service is not available.</summary>
|
||||
// Token: 0x0400079B RID: 1947
|
||||
[Token(Token = "0x400079B")]
|
||||
ServiceNotAvailable = 421,
|
||||
/// <summary>Specifies that the data connection cannot be opened.</summary>
|
||||
// Token: 0x0400079C RID: 1948
|
||||
[Token(Token = "0x400079C")]
|
||||
CantOpenData = 425,
|
||||
/// <summary>Specifies that the connection has been closed.</summary>
|
||||
// Token: 0x0400079D RID: 1949
|
||||
[Token(Token = "0x400079D")]
|
||||
ConnectionClosed,
|
||||
/// <summary>Specifies that the requested action cannot be performed on the specified file because the file is not available or is being used.</summary>
|
||||
// Token: 0x0400079E RID: 1950
|
||||
[Token(Token = "0x400079E")]
|
||||
ActionNotTakenFileUnavailableOrBusy = 450,
|
||||
/// <summary>Specifies that an error occurred that prevented the request action from completing.</summary>
|
||||
// Token: 0x0400079F RID: 1951
|
||||
[Token(Token = "0x400079F")]
|
||||
ActionAbortedLocalProcessingError,
|
||||
/// <summary>Specifies that the requested action cannot be performed because there is not enough space on the server.</summary>
|
||||
// Token: 0x040007A0 RID: 1952
|
||||
[Token(Token = "0x40007A0")]
|
||||
ActionNotTakenInsufficientSpace,
|
||||
/// <summary>Specifies that the command has a syntax error or is not a command recognized by the server.</summary>
|
||||
// Token: 0x040007A1 RID: 1953
|
||||
[Token(Token = "0x40007A1")]
|
||||
CommandSyntaxError = 500,
|
||||
/// <summary>Specifies that one or more command arguments has a syntax error.</summary>
|
||||
// Token: 0x040007A2 RID: 1954
|
||||
[Token(Token = "0x40007A2")]
|
||||
ArgumentSyntaxError,
|
||||
/// <summary>Specifies that the command is not implemented by the FTP server.</summary>
|
||||
// Token: 0x040007A3 RID: 1955
|
||||
[Token(Token = "0x40007A3")]
|
||||
CommandNotImplemented,
|
||||
/// <summary>Specifies that the sequence of commands is not in the correct order.</summary>
|
||||
// Token: 0x040007A4 RID: 1956
|
||||
[Token(Token = "0x40007A4")]
|
||||
BadCommandSequence,
|
||||
/// <summary>Specifies that login information must be sent to the server.</summary>
|
||||
// Token: 0x040007A5 RID: 1957
|
||||
[Token(Token = "0x40007A5")]
|
||||
NotLoggedIn = 530,
|
||||
/// <summary>Specifies that a user account on the server is required.</summary>
|
||||
// Token: 0x040007A6 RID: 1958
|
||||
[Token(Token = "0x40007A6")]
|
||||
AccountNeeded = 532,
|
||||
/// <summary>Specifies that the requested action cannot be performed on the specified file because the file is not available.</summary>
|
||||
// Token: 0x040007A7 RID: 1959
|
||||
[Token(Token = "0x40007A7")]
|
||||
ActionNotTakenFileUnavailable = 550,
|
||||
/// <summary>Specifies that the requested action cannot be taken because the specified page type is unknown. Page types are described in RFC 959 Section 3.1.2.3</summary>
|
||||
// Token: 0x040007A8 RID: 1960
|
||||
[Token(Token = "0x40007A8")]
|
||||
ActionAbortedUnknownPageType,
|
||||
/// <summary>Specifies that the requested action cannot be performed.</summary>
|
||||
// Token: 0x040007A9 RID: 1961
|
||||
[Token(Token = "0x40007A9")]
|
||||
FileActionAborted,
|
||||
/// <summary>Specifies that the requested action cannot be performed on the specified file.</summary>
|
||||
// Token: 0x040007AA RID: 1962
|
||||
[Token(Token = "0x40007AA")]
|
||||
ActionNotTakenFilenameNotAllowed
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,791 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Implements a File Transfer Protocol (FTP) client.</summary>
|
||||
// Token: 0x0200028B RID: 651
|
||||
[Token(Token = "0x200028B")]
|
||||
public sealed class FtpWebRequest : WebRequest
|
||||
{
|
||||
// Token: 0x0600106A RID: 4202 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600106A")]
|
||||
[Address(RVA = "0xB31F90", Offset = "0xB30F90", VA = "0x180B31F90")]
|
||||
internal FtpWebRequest(Uri uri)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600106B RID: 4203 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600106B")]
|
||||
[Address(RVA = "0xB2E8C0", Offset = "0xB2D8C0", VA = "0x180B2E8C0")]
|
||||
private static Exception GetMustImplement()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Always throws a <see cref="T:System.NotSupportedException" />.</summary>
|
||||
/// <returns>Always throws a <see cref="T:System.NotSupportedException" />.</returns>
|
||||
/// <exception cref="T:System.NotSupportedException">Content type information is not supported for FTP.</exception>
|
||||
// Token: 0x1700032A RID: 810
|
||||
// (set) Token: 0x0600106C RID: 4204 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700032A")]
|
||||
public override string ContentType
|
||||
{
|
||||
[Token(Token = "0x600106C")]
|
||||
[Address(RVA = "0xB32290", Offset = "0xB31290", VA = "0x180B32290", Slot = "16")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that is ignored by the <see cref="T:System.Net.FtpWebRequest" /> class.</summary>
|
||||
/// <returns>An <see cref="T:System.Int64" /> value that should be ignored.</returns>
|
||||
// Token: 0x1700032B RID: 811
|
||||
// (get) Token: 0x0600106D RID: 4205 RVA: 0x00007CE0 File Offset: 0x00005EE0
|
||||
// (set) Token: 0x0600106E RID: 4206 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700032B")]
|
||||
public override long ContentLength
|
||||
{
|
||||
[Token(Token = "0x600106D")]
|
||||
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "14")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
[Token(Token = "0x600106E")]
|
||||
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "15")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the credentials used to communicate with the FTP server.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.ICredentials" /> instance; otherwise, <see langword="null" /> if the property has not been set.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">The value specified for a set operation is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">An <see cref="T:System.Net.ICredentials" /> of a type other than <see cref="T:System.Net.NetworkCredential" /> was specified for a set operation.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
|
||||
// Token: 0x1700032C RID: 812
|
||||
// (get) Token: 0x0600106F RID: 4207 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001070 RID: 4208 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700032C")]
|
||||
public override ICredentials Credentials
|
||||
{
|
||||
[Token(Token = "0x600106F")]
|
||||
[Address(RVA = "0x493640", Offset = "0x492640", VA = "0x180493640", Slot = "17")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001070")]
|
||||
[Address(RVA = "0xB322E0", Offset = "0xB312E0", VA = "0x180B322E0", Slot = "18")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a <see cref="T:System.Boolean" /> that specifies that an SSL connection should be used.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if control and data transmissions are encrypted; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The connection to the FTP server has already been established.</exception>
|
||||
// Token: 0x1700032D RID: 813
|
||||
// (get) Token: 0x06001071 RID: 4209 RVA: 0x00007CF8 File Offset: 0x00005EF8
|
||||
[Token(Token = "0x1700032D")]
|
||||
public bool EnableSsl
|
||||
{
|
||||
[Token(Token = "0x6001071")]
|
||||
[Address(RVA = "0x78C650", Offset = "0x78B650", VA = "0x18078C650")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets an empty <see cref="T:System.Net.WebHeaderCollection" /> object.</summary>
|
||||
/// <returns>An empty <see cref="T:System.Net.WebHeaderCollection" /> object.</returns>
|
||||
// Token: 0x1700032E RID: 814
|
||||
// (get) Token: 0x06001072 RID: 4210 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001073 RID: 4211 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700032E")]
|
||||
[MonoTODO]
|
||||
public override WebHeaderCollection Headers
|
||||
{
|
||||
[Token(Token = "0x6001072")]
|
||||
[Address(RVA = "0xB32180", Offset = "0xB31180", VA = "0x180B32180", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001073")]
|
||||
[Address(RVA = "0xB32440", Offset = "0xB31440", VA = "0x180B32440", Slot = "13")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the command to send to the FTP server.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> value that contains the FTP command to send to the server. The default value is <see cref="F:System.Net.WebRequestMethods.Ftp.DownloadFile" />.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">The method is invalid.
|
||||
/// -or-
|
||||
/// The method is not supported.
|
||||
/// -or-
|
||||
/// Multiple methods were specified.</exception>
|
||||
// Token: 0x1700032F RID: 815
|
||||
// (get) Token: 0x06001074 RID: 4212 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001075 RID: 4213 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700032F")]
|
||||
public override string Method
|
||||
{
|
||||
[Token(Token = "0x6001074")]
|
||||
[Address(RVA = "0x4646B0", Offset = "0x4636B0", VA = "0x1804646B0", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001075")]
|
||||
[Address(RVA = "0xB324A0", Offset = "0xB314A0", VA = "0x180B324A0", Slot = "10")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the proxy used to communicate with the FTP server.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.IWebProxy" /> instance responsible for communicating with the FTP server. On .NET Core, its value is <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">This property cannot be set to <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
|
||||
// Token: 0x17000330 RID: 816
|
||||
// (get) Token: 0x06001076 RID: 4214 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x06001077 RID: 4215 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000330")]
|
||||
public override IWebProxy Proxy
|
||||
{
|
||||
[Token(Token = "0x6001076")]
|
||||
[Address(RVA = "0x54F060", Offset = "0x54E060", VA = "0x18054F060", Slot = "19")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x6001077")]
|
||||
[Address(RVA = "0xB32600", Offset = "0xB31600", VA = "0x180B32600", Slot = "20")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a time-out when reading from or writing to a stream.</summary>
|
||||
/// <returns>The number of milliseconds before the reading or writing times out. The default value is 300,000 milliseconds (5 minutes).</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The request has already been sent.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The value specified for a set operation is less than or equal to zero and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
|
||||
// Token: 0x17000331 RID: 817
|
||||
// (get) Token: 0x06001078 RID: 4216 RVA: 0x00007D10 File Offset: 0x00005F10
|
||||
[Token(Token = "0x17000331")]
|
||||
public int ReadWriteTimeout
|
||||
{
|
||||
[Token(Token = "0x6001078")]
|
||||
[Address(RVA = "0x4AF6C0", Offset = "0x4AE6C0", VA = "0x1804AF6C0")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the URI requested by this instance.</summary>
|
||||
/// <returns>A <see cref="T:System.Uri" /> instance that identifies a resource that is accessed using the File Transfer Protocol.</returns>
|
||||
// Token: 0x17000332 RID: 818
|
||||
// (get) Token: 0x06001079 RID: 4217 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000332")]
|
||||
public override Uri RequestUri
|
||||
{
|
||||
[Token(Token = "0x6001079")]
|
||||
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0", Slot = "11")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the <see cref="T:System.Net.ServicePoint" /> object used to connect to the FTP server.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.ServicePoint" /> object that can be used to customize connection behavior.</returns>
|
||||
// Token: 0x17000333 RID: 819
|
||||
// (get) Token: 0x0600107A RID: 4218 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000333")]
|
||||
public ServicePoint ServicePoint
|
||||
{
|
||||
[Token(Token = "0x600107A")]
|
||||
[Address(RVA = "0xB321E0", Offset = "0xB311E0", VA = "0x180B321E0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the number of milliseconds to wait for a request.</summary>
|
||||
/// <returns>An <see cref="T:System.Int32" /> value that contains the number of milliseconds to wait before a request times out. The default value is <see cref="F:System.Threading.Timeout.Infinite" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The value specified is less than zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
|
||||
// Token: 0x17000334 RID: 820
|
||||
// (get) Token: 0x0600107B RID: 4219 RVA: 0x00007D28 File Offset: 0x00005F28
|
||||
[Token(Token = "0x17000334")]
|
||||
public override int Timeout
|
||||
{
|
||||
[Token(Token = "0x600107B")]
|
||||
[Address(RVA = "0x4AF6B0", Offset = "0x4AE6B0", VA = "0x1804AF6B0", Slot = "21")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000335 RID: 821
|
||||
// (get) Token: 0x0600107C RID: 4220 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000335")]
|
||||
private string DataType
|
||||
{
|
||||
[Token(Token = "0x600107C")]
|
||||
[Address(RVA = "0xB32140", Offset = "0xB31140", VA = "0x180B32140")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000336 RID: 822
|
||||
// (get) Token: 0x0600107D RID: 4221 RVA: 0x00007D40 File Offset: 0x00005F40
|
||||
// (set) Token: 0x0600107E RID: 4222 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000336")]
|
||||
private FtpWebRequest.RequestState State
|
||||
{
|
||||
[Token(Token = "0x600107D")]
|
||||
[Address(RVA = "0xB321F0", Offset = "0xB311F0", VA = "0x180B321F0")]
|
||||
get
|
||||
{
|
||||
return FtpWebRequest.RequestState.Before;
|
||||
}
|
||||
[Token(Token = "0x600107E")]
|
||||
[Address(RVA = "0xB32680", Offset = "0xB31680", VA = "0x180B32680")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Terminates an asynchronous FTP operation.</summary>
|
||||
// Token: 0x0600107F RID: 4223 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600107F")]
|
||||
[Address(RVA = "0xB2D100", Offset = "0xB2C100", VA = "0x180B2D100", Slot = "25")]
|
||||
public override void Abort()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Begins sending a request and receiving a response from an FTP server asynchronously.</summary>
|
||||
/// <param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that references the method to invoke when the operation is complete.</param>
|
||||
/// <param name="state">A user-defined object that contains information about the operation. This object is passed to the <paramref name="callback" /> delegate when the operation completes.</param>
|
||||
/// <returns>An <see cref="T:System.IAsyncResult" /> instance that indicates the status of the operation.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">
|
||||
/// <see cref="M:System.Net.FtpWebRequest.GetResponse" /> or <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> has already been called for this instance.</exception>
|
||||
// Token: 0x06001080 RID: 4224 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001080")]
|
||||
[Address(RVA = "0xB2D820", Offset = "0xB2C820", VA = "0x180B2D820", Slot = "23")]
|
||||
public override IAsyncResult BeginGetResponse(AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Ends a pending asynchronous operation started with <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</summary>
|
||||
/// <param name="asyncResult">The <see cref="T:System.IAsyncResult" /> that was returned when the operation started.</param>
|
||||
/// <returns>A <see cref="T:System.Net.WebResponse" /> reference that contains an <see cref="T:System.Net.FtpWebResponse" /> instance. This object contains the FTP server's response to the request.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="asyncResult" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="asyncResult" /> was not obtained by calling <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">This method was already called for the operation identified by <paramref name="asyncResult" />.</exception>
|
||||
/// <exception cref="T:System.Net.WebException">An error occurred using an HTTP proxy.</exception>
|
||||
// Token: 0x06001081 RID: 4225 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001081")]
|
||||
[Address(RVA = "0xB2E2D0", Offset = "0xB2D2D0", VA = "0x180B2E2D0", Slot = "24")]
|
||||
public override WebResponse EndGetResponse(IAsyncResult asyncResult)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the FTP server response.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebResponse" /> reference that contains an <see cref="T:System.Net.FtpWebResponse" /> instance. This object contains the FTP server's response to the request.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">
|
||||
/// <see cref="M:System.Net.FtpWebRequest.GetResponse" /> or <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> has already been called for this instance.
|
||||
/// -or-
|
||||
/// An HTTP proxy is enabled, and you attempted to use an FTP command other than <see cref="F:System.Net.WebRequestMethods.Ftp.DownloadFile" />, <see cref="F:System.Net.WebRequestMethods.Ftp.ListDirectory" />, or <see cref="F:System.Net.WebRequestMethods.Ftp.ListDirectoryDetails" />.</exception>
|
||||
/// <exception cref="T:System.Net.WebException">
|
||||
/// <see cref="P:System.Net.FtpWebRequest.EnableSsl" /> is set to <see langword="true" />, but the server does not support this feature.
|
||||
/// -or-
|
||||
/// A <see cref="P:System.Net.FtpWebRequest.Timeout" /> was specified and the timeout has expired.</exception>
|
||||
// Token: 0x06001082 RID: 4226 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001082")]
|
||||
[Address(RVA = "0xB2F140", Offset = "0xB2E140", VA = "0x180B2F140", Slot = "22")]
|
||||
public override WebResponse GetResponse()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001083 RID: 4227 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001083")]
|
||||
[Address(RVA = "0xB2F180", Offset = "0xB2E180", VA = "0x180B2F180")]
|
||||
private ServicePoint GetServicePoint()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001084 RID: 4228 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001084")]
|
||||
[Address(RVA = "0xB31240", Offset = "0xB30240", VA = "0x180B31240")]
|
||||
private void ResolveHost()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001085 RID: 4229 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001085")]
|
||||
[Address(RVA = "0xB30980", Offset = "0xB2F980", VA = "0x180B30980")]
|
||||
private void ProcessRequest()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001086 RID: 4230 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001086")]
|
||||
[Address(RVA = "0xB316C0", Offset = "0xB306C0", VA = "0x180B316C0")]
|
||||
private void SetType()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001087 RID: 4231 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001087")]
|
||||
[Address(RVA = "0xB2ED70", Offset = "0xB2DD70", VA = "0x180B2ED70")]
|
||||
private string GetRemoteFolderPath(Uri uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001088 RID: 4232 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001088")]
|
||||
[Address(RVA = "0xB2DAA0", Offset = "0xB2CAA0", VA = "0x180B2DAA0")]
|
||||
private void CWDAndSetFileName(Uri uri)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001089 RID: 4233 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001089")]
|
||||
[Address(RVA = "0xB301A0", Offset = "0xB2F1A0", VA = "0x180B301A0")]
|
||||
private void ProcessMethod()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600108A RID: 4234 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600108A")]
|
||||
[Address(RVA = "0xB2E050", Offset = "0xB2D050", VA = "0x180B2E050")]
|
||||
private void CloseControlConnection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600108B RID: 4235 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600108B")]
|
||||
[Address(RVA = "0xB2E0E0", Offset = "0xB2D0E0", VA = "0x180B2E0E0")]
|
||||
internal void CloseDataConnection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600108C RID: 4236 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600108C")]
|
||||
[Address(RVA = "0xB2DFA0", Offset = "0xB2CFA0", VA = "0x180B2DFA0")]
|
||||
private void CloseConnection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600108D RID: 4237 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600108D")]
|
||||
[Address(RVA = "0xB30C30", Offset = "0xB2FC30", VA = "0x180B30C30")]
|
||||
private void ProcessSimpleMethod()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600108E RID: 4238 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600108E")]
|
||||
[Address(RVA = "0xB319F0", Offset = "0xB309F0", VA = "0x180B319F0")]
|
||||
private void UploadData()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600108F RID: 4239 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600108F")]
|
||||
[Address(RVA = "0xB2E210", Offset = "0xB2D210", VA = "0x180B2E210")]
|
||||
private void DownloadData()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001090 RID: 4240 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001090")]
|
||||
[Address(RVA = "0xB2DF30", Offset = "0xB2CF30", VA = "0x180B2DF30")]
|
||||
private void CheckRequestStarted()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001091 RID: 4241 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001091")]
|
||||
[Address(RVA = "0xB2F970", Offset = "0xB2E970", VA = "0x180B2F970")]
|
||||
private void OpenControlConnection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001092 RID: 4242 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001092")]
|
||||
[Address(RVA = "0xB2E6F0", Offset = "0xB2D6F0", VA = "0x180B2E6F0")]
|
||||
private static string GetInitialPath(FtpStatus status)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001093 RID: 4243 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001093")]
|
||||
[Address(RVA = "0xB317F0", Offset = "0xB307F0", VA = "0x180B317F0")]
|
||||
private Socket SetupPassiveConnection(string statusDescription, bool ipv6)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001094 RID: 4244 RVA: 0x00007D58 File Offset: 0x00005F58
|
||||
[Token(Token = "0x6001094")]
|
||||
[Address(RVA = "0xB2E910", Offset = "0xB2D910", VA = "0x180B2E910")]
|
||||
private int GetPortV4(string responseString)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06001095 RID: 4245 RVA: 0x00007D70 File Offset: 0x00005F70
|
||||
[Token(Token = "0x6001095")]
|
||||
[Address(RVA = "0xB2EB50", Offset = "0xB2DB50", VA = "0x180B2EB50")]
|
||||
private int GetPortV6(string responseString)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06001096 RID: 4246 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001096")]
|
||||
[Address(RVA = "0xB2E5B0", Offset = "0xB2D5B0", VA = "0x180B2E5B0")]
|
||||
private string FormatAddress(IPAddress address, int Port)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001097 RID: 4247 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001097")]
|
||||
[Address(RVA = "0xB2E4B0", Offset = "0xB2D4B0", VA = "0x180B2E4B0")]
|
||||
private string FormatAddressV6(IPAddress address, int port)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001098 RID: 4248 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001098")]
|
||||
[Address(RVA = "0xB2E110", Offset = "0xB2D110", VA = "0x180B2E110")]
|
||||
private Exception CreateExceptionFromResponse(FtpStatus status)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001099 RID: 4249 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001099")]
|
||||
[Address(RVA = "0xB31630", Offset = "0xB30630", VA = "0x180B31630")]
|
||||
internal void SetTransferCompleted()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600109A RID: 4250 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600109A")]
|
||||
[Address(RVA = "0xB30180", Offset = "0xB2F180", VA = "0x180B30180")]
|
||||
internal void OperationCompleted()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600109B RID: 4251 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600109B")]
|
||||
[Address(RVA = "0xB31600", Offset = "0xB30600", VA = "0x180B31600")]
|
||||
private void SetCompleteWithError(Exception exc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600109C RID: 4252 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600109C")]
|
||||
[Address(RVA = "0xB2F2B0", Offset = "0xB2E2B0", VA = "0x180B2F2B0")]
|
||||
private Socket InitDataConnection()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600109D RID: 4253 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600109D")]
|
||||
[Address(RVA = "0xB2FDD0", Offset = "0xB2EDD0", VA = "0x180B2FDD0")]
|
||||
private void OpenDataConnection()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600109E RID: 4254 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600109E")]
|
||||
[Address(RVA = "0xB2D270", Offset = "0xB2C270", VA = "0x180B2D270")]
|
||||
private void Authenticate()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600109F RID: 4255 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600109F")]
|
||||
[Address(RVA = "0xB31570", Offset = "0xB30570", VA = "0x180B31570")]
|
||||
private FtpStatus SendCommand(string command, params string[] parameters)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060010A0 RID: 4256 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010A0")]
|
||||
[Address(RVA = "0xB313D0", Offset = "0xB303D0", VA = "0x180B313D0")]
|
||||
private FtpStatus SendCommand(bool waitResponse, string command, params string[] parameters)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060010A1 RID: 4257 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010A1")]
|
||||
[Address(RVA = "0xB31590", Offset = "0xB30590", VA = "0x180B31590")]
|
||||
internal static FtpStatus ServiceNotAvailable()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060010A2 RID: 4258 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010A2")]
|
||||
[Address(RVA = "0xB2EF20", Offset = "0xB2DF20", VA = "0x180B2EF20")]
|
||||
internal FtpStatus GetResponseStatus()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060010A3 RID: 4259 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010A3")]
|
||||
[Address(RVA = "0xB2F870", Offset = "0xB2E870", VA = "0x180B2F870")]
|
||||
private void InitiateSecureConnection(ref Stream stream)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010A4 RID: 4260 RVA: 0x00007D88 File Offset: 0x00005F88
|
||||
[Token(Token = "0x60010A4")]
|
||||
[Address(RVA = "0xB2DC40", Offset = "0xB2CC40", VA = "0x180B2DC40")]
|
||||
internal bool ChangeToSSLSocket(ref Stream stream)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060010A5 RID: 4261 RVA: 0x00007DA0 File Offset: 0x00005FA0
|
||||
[Token(Token = "0x60010A5")]
|
||||
[Address(RVA = "0xB2F210", Offset = "0xB2E210", VA = "0x180B2F210")]
|
||||
private bool InFinalState()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060010A6 RID: 4262 RVA: 0x00007DB8 File Offset: 0x00005FB8
|
||||
[Token(Token = "0x60010A6")]
|
||||
[Address(RVA = "0xB2F260", Offset = "0xB2E260", VA = "0x180B2F260")]
|
||||
private bool InProgress()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060010A7 RID: 4263 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010A7")]
|
||||
[Address(RVA = "0xB2DEC0", Offset = "0xB2CEC0", VA = "0x180B2DEC0")]
|
||||
internal void CheckIfAborted()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010A8 RID: 4264 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010A8")]
|
||||
[Address(RVA = "0xB2DE30", Offset = "0xB2CE30", VA = "0x180B2DE30")]
|
||||
private void CheckFinalState()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400098A RID: 2442
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x400098A")]
|
||||
private Uri requestUri;
|
||||
|
||||
// Token: 0x0400098B RID: 2443
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400098B")]
|
||||
private string file_name;
|
||||
|
||||
// Token: 0x0400098C RID: 2444
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400098C")]
|
||||
private ServicePoint servicePoint;
|
||||
|
||||
// Token: 0x0400098D RID: 2445
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x400098D")]
|
||||
private Stream origDataStream;
|
||||
|
||||
// Token: 0x0400098E RID: 2446
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x400098E")]
|
||||
private Stream dataStream;
|
||||
|
||||
// Token: 0x0400098F RID: 2447
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x400098F")]
|
||||
private Stream controlStream;
|
||||
|
||||
// Token: 0x04000990 RID: 2448
|
||||
[FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x4000990")]
|
||||
private StreamReader controlReader;
|
||||
|
||||
// Token: 0x04000991 RID: 2449
|
||||
[FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x4000991")]
|
||||
private NetworkCredential credentials;
|
||||
|
||||
// Token: 0x04000992 RID: 2450
|
||||
[FieldOffset(Offset = "0x78")]
|
||||
[Token(Token = "0x4000992")]
|
||||
private IPHostEntry hostEntry;
|
||||
|
||||
// Token: 0x04000993 RID: 2451
|
||||
[FieldOffset(Offset = "0x80")]
|
||||
[Token(Token = "0x4000993")]
|
||||
private IPEndPoint localEndPoint;
|
||||
|
||||
// Token: 0x04000994 RID: 2452
|
||||
[FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x4000994")]
|
||||
private IPEndPoint remoteEndPoint;
|
||||
|
||||
// Token: 0x04000995 RID: 2453
|
||||
[FieldOffset(Offset = "0x90")]
|
||||
[Token(Token = "0x4000995")]
|
||||
private IWebProxy proxy;
|
||||
|
||||
// Token: 0x04000996 RID: 2454
|
||||
[FieldOffset(Offset = "0x98")]
|
||||
[Token(Token = "0x4000996")]
|
||||
private int timeout;
|
||||
|
||||
// Token: 0x04000997 RID: 2455
|
||||
[FieldOffset(Offset = "0x9C")]
|
||||
[Token(Token = "0x4000997")]
|
||||
private int rwTimeout;
|
||||
|
||||
// Token: 0x04000998 RID: 2456
|
||||
[FieldOffset(Offset = "0xA0")]
|
||||
[Token(Token = "0x4000998")]
|
||||
private long offset;
|
||||
|
||||
// Token: 0x04000999 RID: 2457
|
||||
[FieldOffset(Offset = "0xA8")]
|
||||
[Token(Token = "0x4000999")]
|
||||
private bool binary;
|
||||
|
||||
// Token: 0x0400099A RID: 2458
|
||||
[FieldOffset(Offset = "0xA9")]
|
||||
[Token(Token = "0x400099A")]
|
||||
private bool enableSsl;
|
||||
|
||||
// Token: 0x0400099B RID: 2459
|
||||
[FieldOffset(Offset = "0xAA")]
|
||||
[Token(Token = "0x400099B")]
|
||||
private bool usePassive;
|
||||
|
||||
// Token: 0x0400099C RID: 2460
|
||||
[FieldOffset(Offset = "0xAB")]
|
||||
[Token(Token = "0x400099C")]
|
||||
private bool keepAlive;
|
||||
|
||||
// Token: 0x0400099D RID: 2461
|
||||
[FieldOffset(Offset = "0xB0")]
|
||||
[Token(Token = "0x400099D")]
|
||||
private string method;
|
||||
|
||||
// Token: 0x0400099E RID: 2462
|
||||
[FieldOffset(Offset = "0xB8")]
|
||||
[Token(Token = "0x400099E")]
|
||||
private string renameTo;
|
||||
|
||||
// Token: 0x0400099F RID: 2463
|
||||
[FieldOffset(Offset = "0xC0")]
|
||||
[Token(Token = "0x400099F")]
|
||||
private object locker;
|
||||
|
||||
// Token: 0x040009A0 RID: 2464
|
||||
[FieldOffset(Offset = "0xC8")]
|
||||
[Token(Token = "0x40009A0")]
|
||||
private FtpWebRequest.RequestState requestState;
|
||||
|
||||
// Token: 0x040009A1 RID: 2465
|
||||
[FieldOffset(Offset = "0xD0")]
|
||||
[Token(Token = "0x40009A1")]
|
||||
private FtpAsyncResult asyncResult;
|
||||
|
||||
// Token: 0x040009A2 RID: 2466
|
||||
[FieldOffset(Offset = "0xD8")]
|
||||
[Token(Token = "0x40009A2")]
|
||||
private FtpWebResponse ftpResponse;
|
||||
|
||||
// Token: 0x040009A3 RID: 2467
|
||||
[FieldOffset(Offset = "0xE0")]
|
||||
[Token(Token = "0x40009A3")]
|
||||
private Stream requestStream;
|
||||
|
||||
// Token: 0x040009A4 RID: 2468
|
||||
[FieldOffset(Offset = "0xE8")]
|
||||
[Token(Token = "0x40009A4")]
|
||||
private string initial_path;
|
||||
|
||||
// Token: 0x040009A5 RID: 2469
|
||||
[Token(Token = "0x40009A5")]
|
||||
private static readonly string[] supportedCommands;
|
||||
|
||||
// Token: 0x040009A6 RID: 2470
|
||||
[FieldOffset(Offset = "0xF0")]
|
||||
[Token(Token = "0x40009A6")]
|
||||
private Encoding dataEncoding;
|
||||
|
||||
// Token: 0x0200028C RID: 652
|
||||
[Token(Token = "0x200028C")]
|
||||
private enum RequestState
|
||||
{
|
||||
// Token: 0x040009A8 RID: 2472
|
||||
[Token(Token = "0x40009A8")]
|
||||
Before,
|
||||
// Token: 0x040009A9 RID: 2473
|
||||
[Token(Token = "0x40009A9")]
|
||||
Scheduled,
|
||||
// Token: 0x040009AA RID: 2474
|
||||
[Token(Token = "0x40009AA")]
|
||||
Connecting,
|
||||
// Token: 0x040009AB RID: 2475
|
||||
[Token(Token = "0x40009AB")]
|
||||
Authenticating,
|
||||
// Token: 0x040009AC RID: 2476
|
||||
[Token(Token = "0x40009AC")]
|
||||
OpeningData,
|
||||
// Token: 0x040009AD RID: 2477
|
||||
[Token(Token = "0x40009AD")]
|
||||
TransferInProgress,
|
||||
// Token: 0x040009AE RID: 2478
|
||||
[Token(Token = "0x40009AE")]
|
||||
Finished,
|
||||
// Token: 0x040009AF RID: 2479
|
||||
[Token(Token = "0x40009AF")]
|
||||
Aborted,
|
||||
// Token: 0x040009B0 RID: 2480
|
||||
[Token(Token = "0x40009B0")]
|
||||
Error
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,232 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Encapsulates a File Transfer Protocol (FTP) server's response to a request.</summary>
|
||||
// Token: 0x0200028D RID: 653
|
||||
[Token(Token = "0x200028D")]
|
||||
public class FtpWebResponse : WebResponse
|
||||
{
|
||||
// Token: 0x060010AA RID: 4266 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010AA")]
|
||||
[Address(RVA = "0xB32AF0", Offset = "0xB31AF0", VA = "0x180B32AF0")]
|
||||
internal FtpWebResponse(FtpWebRequest request, Uri uri, string method, bool keepAlive)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010AB RID: 4267 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010AB")]
|
||||
[Address(RVA = "0xB32BE0", Offset = "0xB31BE0", VA = "0x180B32BE0")]
|
||||
internal FtpWebResponse(FtpWebRequest request, Uri uri, string method, FtpStatusCode statusCode, string statusDescription)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010AC RID: 4268 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010AC")]
|
||||
[Address(RVA = "0xB32AB0", Offset = "0xB31AB0", VA = "0x180B32AB0")]
|
||||
internal FtpWebResponse(FtpWebRequest request, Uri uri, string method, FtpStatus status)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets an empty <see cref="T:System.Net.WebHeaderCollection" /> object.</summary>
|
||||
/// <returns>An empty <see cref="T:System.Net.WebHeaderCollection" /> object.</returns>
|
||||
// Token: 0x17000337 RID: 823
|
||||
// (get) Token: 0x060010AD RID: 4269 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000337")]
|
||||
public override WebHeaderCollection Headers
|
||||
{
|
||||
[Token(Token = "0x60010AD")]
|
||||
[Address(RVA = "0xB32CE0", Offset = "0xB31CE0", VA = "0x180B32CE0", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the URI that sent the response to the request.</summary>
|
||||
/// <returns>A <see cref="T:System.Uri" /> instance that identifies the resource associated with this response.</returns>
|
||||
// Token: 0x17000338 RID: 824
|
||||
// (get) Token: 0x060010AE RID: 4270 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000338")]
|
||||
public override Uri ResponseUri
|
||||
{
|
||||
[Token(Token = "0x60010AE")]
|
||||
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the date and time that a file on an FTP server was last modified.</summary>
|
||||
/// <returns>A <see cref="T:System.DateTime" /> that contains the last modified date and time for a file.</returns>
|
||||
// Token: 0x17000339 RID: 825
|
||||
// (set) Token: 0x060010AF RID: 4271 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000339")]
|
||||
internal DateTime LastModified
|
||||
{
|
||||
[Token(Token = "0x60010AF")]
|
||||
[Address(RVA = "0x415830", Offset = "0x414830", VA = "0x180415830")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the message sent by the FTP server when a connection is established prior to logon.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> that contains the banner message sent by the server; otherwise, <see cref="F:System.String.Empty" /> if no message is sent.</returns>
|
||||
// Token: 0x1700033A RID: 826
|
||||
// (set) Token: 0x060010B0 RID: 4272 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700033A")]
|
||||
internal string BannerMessage
|
||||
{
|
||||
[Token(Token = "0x60010B0")]
|
||||
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the message sent by the FTP server when authentication is complete.</summary>
|
||||
/// <returns>A <see cref="T:System.String" /> that contains the welcome message sent by the server; otherwise, <see cref="F:System.String.Empty" /> if no message is sent.</returns>
|
||||
// Token: 0x1700033B RID: 827
|
||||
// (set) Token: 0x060010B1 RID: 4273 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700033B")]
|
||||
internal string WelcomeMessage
|
||||
{
|
||||
[Token(Token = "0x60010B1")]
|
||||
[Address(RVA = "0x417960", Offset = "0x416960", VA = "0x180417960")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the most recent status code sent from the FTP server.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.FtpStatusCode" /> value that indicates the most recent status code returned with this response.</returns>
|
||||
// Token: 0x1700033C RID: 828
|
||||
// (set) Token: 0x060010B2 RID: 4274 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700033C")]
|
||||
internal FtpStatusCode StatusCode
|
||||
{
|
||||
[Token(Token = "0x60010B2")]
|
||||
[Address(RVA = "0x5AB430", Offset = "0x5AA430", VA = "0x1805AB430")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Frees the resources held by the response.</summary>
|
||||
// Token: 0x060010B3 RID: 4275 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010B3")]
|
||||
[Address(RVA = "0xB32890", Offset = "0xB31890", VA = "0x180B32890", Slot = "9")]
|
||||
public override void Close()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Retrieves the stream that contains response data sent from an FTP server.</summary>
|
||||
/// <returns>A readable <see cref="T:System.IO.Stream" /> instance that contains data returned with the response; otherwise, <see cref="F:System.IO.Stream.Null" /> if no response data was returned by the server.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The response did not return a data stream.</exception>
|
||||
// Token: 0x060010B4 RID: 4276 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010B4")]
|
||||
[Address(RVA = "0xB32950", Offset = "0xB31950", VA = "0x180B32950", Slot = "11")]
|
||||
public override Stream GetResponseStream()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x1700033D RID: 829
|
||||
// (set) Token: 0x060010B5 RID: 4277 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700033D")]
|
||||
internal Stream Stream
|
||||
{
|
||||
[Token(Token = "0x60010B5")]
|
||||
[Address(RVA = "0x4157F0", Offset = "0x4147F0", VA = "0x1804157F0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060010B6 RID: 4278 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010B6")]
|
||||
[Address(RVA = "0xB32A80", Offset = "0xB31A80", VA = "0x180B32A80")]
|
||||
internal void UpdateStatus(FtpStatus status)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010B7 RID: 4279 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010B7")]
|
||||
[Address(RVA = "0xB32800", Offset = "0xB31800", VA = "0x180B32800")]
|
||||
private void CheckDisposed()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010B8 RID: 4280 RVA: 0x00007DD0 File Offset: 0x00005FD0
|
||||
[Token(Token = "0x60010B8")]
|
||||
[Address(RVA = "0xB32A70", Offset = "0xB31A70", VA = "0x180B32A70")]
|
||||
internal bool IsFinal()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x040009B1 RID: 2481
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40009B1")]
|
||||
private Stream stream;
|
||||
|
||||
// Token: 0x040009B2 RID: 2482
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40009B2")]
|
||||
private Uri uri;
|
||||
|
||||
// Token: 0x040009B3 RID: 2483
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x40009B3")]
|
||||
private FtpStatusCode statusCode;
|
||||
|
||||
// Token: 0x040009B4 RID: 2484
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x40009B4")]
|
||||
private DateTime lastModified;
|
||||
|
||||
// Token: 0x040009B5 RID: 2485
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x40009B5")]
|
||||
private string bannerMessage;
|
||||
|
||||
// Token: 0x040009B6 RID: 2486
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x40009B6")]
|
||||
private string welcomeMessage;
|
||||
|
||||
// Token: 0x040009B7 RID: 2487
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x40009B7")]
|
||||
private string exitMessage;
|
||||
|
||||
// Token: 0x040009B8 RID: 2488
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x40009B8")]
|
||||
private string statusDescription;
|
||||
|
||||
// Token: 0x040009B9 RID: 2489
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x40009B9")]
|
||||
private string method;
|
||||
|
||||
// Token: 0x040009BA RID: 2490
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x40009BA")]
|
||||
private bool disposed;
|
||||
|
||||
// Token: 0x040009BB RID: 2491
|
||||
[FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x40009BB")]
|
||||
private FtpWebRequest request;
|
||||
|
||||
// Token: 0x040009BC RID: 2492
|
||||
[FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x40009BC")]
|
||||
internal long contentLength;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Contains a global default proxy instance for all HTTP requests.</summary>
|
||||
// Token: 0x02000220 RID: 544
|
||||
[Token(Token = "0x2000220")]
|
||||
[Obsolete]
|
||||
public class GlobalProxySelection
|
||||
{
|
||||
/// <summary>Gets or sets the global HTTP proxy.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.IWebProxy" /> that every call to <see cref="M:System.Net.HttpWebRequest.GetResponse" /> uses.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">The value specified for a set operation was <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.Security.SecurityException">The caller does not have permission for the requested operation.</exception>
|
||||
// Token: 0x1700028D RID: 653
|
||||
// (get) Token: 0x06000DD1 RID: 3537 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700028D")]
|
||||
public static IWebProxy Select
|
||||
{
|
||||
[Token(Token = "0x6000DD1")]
|
||||
[Address(RVA = "0xB32D80", Offset = "0xB31D80", VA = "0x180B32D80")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns an empty proxy instance.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.IWebProxy" /> that contains no information.</returns>
|
||||
// Token: 0x06000DD2 RID: 3538 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000DD2")]
|
||||
[Address(RVA = "0xB32D30", Offset = "0xB31D30", VA = "0x180B32D30")]
|
||||
public static IWebProxy GetEmptyWebProxy()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000244 RID: 580
|
||||
[Token(Token = "0x2000244")]
|
||||
internal class HeaderInfo
|
||||
{
|
||||
// Token: 0x06000EA1 RID: 3745 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000EA1")]
|
||||
[Address(RVA = "0xB35090", Offset = "0xB34090", VA = "0x180B35090")]
|
||||
internal HeaderInfo(string name, bool requestRestricted, bool responseRestricted, bool multi, HeaderParser p)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000881 RID: 2177
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000881")]
|
||||
internal readonly bool IsRequestRestricted;
|
||||
|
||||
// Token: 0x04000882 RID: 2178
|
||||
[FieldOffset(Offset = "0x11")]
|
||||
[Token(Token = "0x4000882")]
|
||||
internal readonly bool IsResponseRestricted;
|
||||
|
||||
// Token: 0x04000883 RID: 2179
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000883")]
|
||||
internal readonly HeaderParser Parser;
|
||||
|
||||
// Token: 0x04000884 RID: 2180
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000884")]
|
||||
internal readonly string HeaderName;
|
||||
|
||||
// Token: 0x04000885 RID: 2181
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000885")]
|
||||
internal readonly bool AllowMultiValues;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000245 RID: 581
|
||||
[Token(Token = "0x2000245")]
|
||||
internal class HeaderInfoTable
|
||||
{
|
||||
// Token: 0x06000EA2 RID: 3746 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000EA2")]
|
||||
[Address(RVA = "0xB33050", Offset = "0xB32050", VA = "0x180B33050")]
|
||||
private static string[] ParseSingleValue(string value)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000EA3 RID: 3747 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000EA3")]
|
||||
[Address(RVA = "0xB32E60", Offset = "0xB31E60", VA = "0x180B32E60")]
|
||||
private static string[] ParseMultiValue(string value)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x170002BA RID: 698
|
||||
[Token(Token = "0x170002BA")]
|
||||
internal HeaderInfo this[string name]
|
||||
{
|
||||
[Token(Token = "0x6000EA5")]
|
||||
[Address(RVA = "0xB34F80", Offset = "0xB33F80", VA = "0x180B34F80")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000EA6 RID: 3750 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000EA6")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public HeaderInfoTable()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000886 RID: 2182
|
||||
[Token(Token = "0x4000886")]
|
||||
private static Hashtable HeaderHashTable;
|
||||
|
||||
// Token: 0x04000887 RID: 2183
|
||||
[Token(Token = "0x4000887")]
|
||||
private static HeaderInfo UnknownHeaderInfo;
|
||||
|
||||
// Token: 0x04000888 RID: 2184
|
||||
[Token(Token = "0x4000888")]
|
||||
private static HeaderParser SingleParser;
|
||||
|
||||
// Token: 0x04000889 RID: 2185
|
||||
[Token(Token = "0x4000889")]
|
||||
private static HeaderParser MultiParser;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000243 RID: 579
|
||||
// (Invoke) Token: 0x06000E9E RID: 3742
|
||||
[Token(Token = "0x2000243")]
|
||||
internal delegate string[] HeaderParser(string value);
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200025E RID: 606
|
||||
[Token(Token = "0x200025E")]
|
||||
internal struct HeaderVariantInfo
|
||||
{
|
||||
// Token: 0x06000F25 RID: 3877 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000F25")]
|
||||
[Address(RVA = "0x62FA90", Offset = "0x62EA90", VA = "0x18062FA90")]
|
||||
internal HeaderVariantInfo(string name, CookieVariant variant)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x170002E7 RID: 743
|
||||
// (get) Token: 0x06000F26 RID: 3878 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002E7")]
|
||||
internal string Name
|
||||
{
|
||||
[Token(Token = "0x6000F26")]
|
||||
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170002E8 RID: 744
|
||||
// (get) Token: 0x06000F27 RID: 3879 RVA: 0x000076B0 File Offset: 0x000058B0
|
||||
[Token(Token = "0x170002E8")]
|
||||
internal CookieVariant Variant
|
||||
{
|
||||
[Token(Token = "0x6000F27")]
|
||||
[Address(RVA = "0x60FD70", Offset = "0x60ED70", VA = "0x18060FD70")]
|
||||
get
|
||||
{
|
||||
return CookieVariant.Unknown;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040008FF RID: 2303
|
||||
[FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x40008FF")]
|
||||
private string m_name;
|
||||
|
||||
// Token: 0x04000900 RID: 2304
|
||||
[FieldOffset(Offset = "0x8")]
|
||||
[Token(Token = "0x4000900")]
|
||||
private CookieVariant m_variant;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Represents the method that notifies callers when a continue response is received by the client.</summary>
|
||||
/// <param name="StatusCode">The numeric value of the HTTP status from the server.</param>
|
||||
/// <param name="httpHeaders">The headers returned with the 100-continue response from the server.</param>
|
||||
// Token: 0x02000231 RID: 561
|
||||
// (Invoke) Token: 0x06000E0E RID: 3598
|
||||
[Token(Token = "0x2000231")]
|
||||
public delegate void HttpContinueDelegate(int StatusCode, WebHeaderCollection httpHeaders);
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x0200028E RID: 654
|
||||
[Token(Token = "0x200028E")]
|
||||
internal class HttpRequestCreator : IWebRequestCreate
|
||||
{
|
||||
// Token: 0x060010B9 RID: 4281 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010B9")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
internal HttpRequestCreator()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010BA RID: 4282 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010BA")]
|
||||
[Address(RVA = "0xB35480", Offset = "0xB34480", VA = "0x180B35480", Slot = "4")]
|
||||
public WebRequest Create(Uri uri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>The HTTP headers that may be specified in a client request.</summary>
|
||||
// Token: 0x02000221 RID: 545
|
||||
[Token(Token = "0x2000221")]
|
||||
public enum HttpRequestHeader
|
||||
{
|
||||
/// <summary>The Cache-Control header, which specifies directives that must be obeyed by all cache control mechanisms along the request/response chain.</summary>
|
||||
// Token: 0x040007AC RID: 1964
|
||||
[Token(Token = "0x40007AC")]
|
||||
CacheControl,
|
||||
/// <summary>The Connection header, which specifies options that are desired for a particular connection.</summary>
|
||||
// Token: 0x040007AD RID: 1965
|
||||
[Token(Token = "0x40007AD")]
|
||||
Connection,
|
||||
/// <summary>The Date header, which specifies the date and time at which the request originated.</summary>
|
||||
// Token: 0x040007AE RID: 1966
|
||||
[Token(Token = "0x40007AE")]
|
||||
Date,
|
||||
/// <summary>The Keep-Alive header, which specifies a parameter used into order to maintain a persistent connection.</summary>
|
||||
// Token: 0x040007AF RID: 1967
|
||||
[Token(Token = "0x40007AF")]
|
||||
KeepAlive,
|
||||
/// <summary>The Pragma header, which specifies implementation-specific directives that might apply to any agent along the request/response chain.</summary>
|
||||
// Token: 0x040007B0 RID: 1968
|
||||
[Token(Token = "0x40007B0")]
|
||||
Pragma,
|
||||
/// <summary>The Trailer header, which specifies the header fields present in the trailer of a message encoded with chunked transfer-coding.</summary>
|
||||
// Token: 0x040007B1 RID: 1969
|
||||
[Token(Token = "0x40007B1")]
|
||||
Trailer,
|
||||
/// <summary>The Transfer-Encoding header, which specifies what (if any) type of transformation that has been applied to the message body.</summary>
|
||||
// Token: 0x040007B2 RID: 1970
|
||||
[Token(Token = "0x40007B2")]
|
||||
TransferEncoding,
|
||||
/// <summary>The Upgrade header, which specifies additional communications protocols that the client supports.</summary>
|
||||
// Token: 0x040007B3 RID: 1971
|
||||
[Token(Token = "0x40007B3")]
|
||||
Upgrade,
|
||||
/// <summary>The Via header, which specifies intermediate protocols to be used by gateway and proxy agents.</summary>
|
||||
// Token: 0x040007B4 RID: 1972
|
||||
[Token(Token = "0x40007B4")]
|
||||
Via,
|
||||
/// <summary>The Warning header, which specifies additional information about that status or transformation of a message that might not be reflected in the message.</summary>
|
||||
// Token: 0x040007B5 RID: 1973
|
||||
[Token(Token = "0x40007B5")]
|
||||
Warning,
|
||||
/// <summary>The Allow header, which specifies the set of HTTP methods supported.</summary>
|
||||
// Token: 0x040007B6 RID: 1974
|
||||
[Token(Token = "0x40007B6")]
|
||||
Allow,
|
||||
/// <summary>The Content-Length header, which specifies the length, in bytes, of the accompanying body data.</summary>
|
||||
// Token: 0x040007B7 RID: 1975
|
||||
[Token(Token = "0x40007B7")]
|
||||
ContentLength,
|
||||
/// <summary>The Content-Type header, which specifies the MIME type of the accompanying body data.</summary>
|
||||
// Token: 0x040007B8 RID: 1976
|
||||
[Token(Token = "0x40007B8")]
|
||||
ContentType,
|
||||
/// <summary>The Content-Encoding header, which specifies the encodings that have been applied to the accompanying body data.</summary>
|
||||
// Token: 0x040007B9 RID: 1977
|
||||
[Token(Token = "0x40007B9")]
|
||||
ContentEncoding,
|
||||
/// <summary>The Content-Langauge header, which specifies the natural language(s) of the accompanying body data.</summary>
|
||||
// Token: 0x040007BA RID: 1978
|
||||
[Token(Token = "0x40007BA")]
|
||||
ContentLanguage,
|
||||
/// <summary>The Content-Location header, which specifies a URI from which the accompanying body may be obtained.</summary>
|
||||
// Token: 0x040007BB RID: 1979
|
||||
[Token(Token = "0x40007BB")]
|
||||
ContentLocation,
|
||||
/// <summary>The Content-MD5 header, which specifies the MD5 digest of the accompanying body data, for the purpose of providing an end-to-end message integrity check.</summary>
|
||||
// Token: 0x040007BC RID: 1980
|
||||
[Token(Token = "0x40007BC")]
|
||||
ContentMd5,
|
||||
/// <summary>The Content-Range header, which specifies where in the full body the accompanying partial body data should be applied.</summary>
|
||||
// Token: 0x040007BD RID: 1981
|
||||
[Token(Token = "0x40007BD")]
|
||||
ContentRange,
|
||||
/// <summary>The Expires header, which specifies the date and time after which the accompanying body data should be considered stale.</summary>
|
||||
// Token: 0x040007BE RID: 1982
|
||||
[Token(Token = "0x40007BE")]
|
||||
Expires,
|
||||
/// <summary>The Last-Modified header, which specifies the date and time at which the accompanying body data was last modified.</summary>
|
||||
// Token: 0x040007BF RID: 1983
|
||||
[Token(Token = "0x40007BF")]
|
||||
LastModified,
|
||||
/// <summary>The Accept header, which specifies the MIME types that are acceptable for the response.</summary>
|
||||
// Token: 0x040007C0 RID: 1984
|
||||
[Token(Token = "0x40007C0")]
|
||||
Accept,
|
||||
/// <summary>The Accept-Charset header, which specifies the character sets that are acceptable for the response.</summary>
|
||||
// Token: 0x040007C1 RID: 1985
|
||||
[Token(Token = "0x40007C1")]
|
||||
AcceptCharset,
|
||||
/// <summary>The Accept-Encoding header, which specifies the content encodings that are acceptable for the response.</summary>
|
||||
// Token: 0x040007C2 RID: 1986
|
||||
[Token(Token = "0x40007C2")]
|
||||
AcceptEncoding,
|
||||
/// <summary>The Accept-Langauge header, which specifies that natural languages that are preferred for the response.</summary>
|
||||
// Token: 0x040007C3 RID: 1987
|
||||
[Token(Token = "0x40007C3")]
|
||||
AcceptLanguage,
|
||||
/// <summary>The Authorization header, which specifies the credentials that the client presents in order to authenticate itself to the server.</summary>
|
||||
// Token: 0x040007C4 RID: 1988
|
||||
[Token(Token = "0x40007C4")]
|
||||
Authorization,
|
||||
/// <summary>The Cookie header, which specifies cookie data presented to the server.</summary>
|
||||
// Token: 0x040007C5 RID: 1989
|
||||
[Token(Token = "0x40007C5")]
|
||||
Cookie,
|
||||
/// <summary>The Expect header, which specifies particular server behaviors that are required by the client.</summary>
|
||||
// Token: 0x040007C6 RID: 1990
|
||||
[Token(Token = "0x40007C6")]
|
||||
Expect,
|
||||
/// <summary>The From header, which specifies an Internet Email address for the human user who controls the requesting user agent.</summary>
|
||||
// Token: 0x040007C7 RID: 1991
|
||||
[Token(Token = "0x40007C7")]
|
||||
From,
|
||||
/// <summary>The Host header, which specifies the host name and port number of the resource being requested.</summary>
|
||||
// Token: 0x040007C8 RID: 1992
|
||||
[Token(Token = "0x40007C8")]
|
||||
Host,
|
||||
/// <summary>The If-Match header, which specifies that the requested operation should be performed only if the client's cached copy of the indicated resource is current.</summary>
|
||||
// Token: 0x040007C9 RID: 1993
|
||||
[Token(Token = "0x40007C9")]
|
||||
IfMatch,
|
||||
/// <summary>The If-Modified-Since header, which specifies that the requested operation should be performed only if the requested resource has been modified since the indicated data and time.</summary>
|
||||
// Token: 0x040007CA RID: 1994
|
||||
[Token(Token = "0x40007CA")]
|
||||
IfModifiedSince,
|
||||
/// <summary>The If-None-Match header, which specifies that the requested operation should be performed only if none of client's cached copies of the indicated resources are current.</summary>
|
||||
// Token: 0x040007CB RID: 1995
|
||||
[Token(Token = "0x40007CB")]
|
||||
IfNoneMatch,
|
||||
/// <summary>The If-Range header, which specifies that only the specified range of the requested resource should be sent, if the client's cached copy is current.</summary>
|
||||
// Token: 0x040007CC RID: 1996
|
||||
[Token(Token = "0x40007CC")]
|
||||
IfRange,
|
||||
/// <summary>The If-Unmodified-Since header, which specifies that the requested operation should be performed only if the requested resource has not been modified since the indicated date and time.</summary>
|
||||
// Token: 0x040007CD RID: 1997
|
||||
[Token(Token = "0x40007CD")]
|
||||
IfUnmodifiedSince,
|
||||
/// <summary>The Max-Forwards header, which specifies an integer indicating the remaining number of times that this request may be forwarded.</summary>
|
||||
// Token: 0x040007CE RID: 1998
|
||||
[Token(Token = "0x40007CE")]
|
||||
MaxForwards,
|
||||
/// <summary>The Proxy-Authorization header, which specifies the credentials that the client presents in order to authenticate itself to a proxy.</summary>
|
||||
// Token: 0x040007CF RID: 1999
|
||||
[Token(Token = "0x40007CF")]
|
||||
ProxyAuthorization,
|
||||
/// <summary>The Referer header, which specifies the URI of the resource from which the request URI was obtained.</summary>
|
||||
// Token: 0x040007D0 RID: 2000
|
||||
[Token(Token = "0x40007D0")]
|
||||
Referer,
|
||||
/// <summary>The Range header, which specifies the sub-range(s) of the response that the client requests be returned in lieu of the entire response.</summary>
|
||||
// Token: 0x040007D1 RID: 2001
|
||||
[Token(Token = "0x40007D1")]
|
||||
Range,
|
||||
/// <summary>The TE header, which specifies the transfer encodings that are acceptable for the response.</summary>
|
||||
// Token: 0x040007D2 RID: 2002
|
||||
[Token(Token = "0x40007D2")]
|
||||
Te,
|
||||
/// <summary>The Translate header, a Microsoft extension to the HTTP specification used in conjunction with WebDAV functionality.</summary>
|
||||
// Token: 0x040007D3 RID: 2003
|
||||
[Token(Token = "0x40007D3")]
|
||||
Translate,
|
||||
/// <summary>The User-Agent header, which specifies information about the client agent.</summary>
|
||||
// Token: 0x040007D4 RID: 2004
|
||||
[Token(Token = "0x40007D4")]
|
||||
UserAgent
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,200 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Contains the values of status codes defined for HTTP.</summary>
|
||||
// Token: 0x02000222 RID: 546
|
||||
[Token(Token = "0x2000222")]
|
||||
public enum HttpStatusCode
|
||||
{
|
||||
/// <summary>Equivalent to HTTP status 100. <see cref="F:System.Net.HttpStatusCode.Continue" /> indicates that the client can continue with its request.</summary>
|
||||
// Token: 0x040007D6 RID: 2006
|
||||
[Token(Token = "0x40007D6")]
|
||||
Continue = 100,
|
||||
/// <summary>Equivalent to HTTP status 101. <see cref="F:System.Net.HttpStatusCode.SwitchingProtocols" /> indicates that the protocol version or protocol is being changed.</summary>
|
||||
// Token: 0x040007D7 RID: 2007
|
||||
[Token(Token = "0x40007D7")]
|
||||
SwitchingProtocols,
|
||||
/// <summary>Equivalent to HTTP status 200. <see cref="F:System.Net.HttpStatusCode.OK" /> indicates that the request succeeded and that the requested information is in the response. This is the most common status code to receive.</summary>
|
||||
// Token: 0x040007D8 RID: 2008
|
||||
[Token(Token = "0x40007D8")]
|
||||
OK = 200,
|
||||
/// <summary>Equivalent to HTTP status 201. <see cref="F:System.Net.HttpStatusCode.Created" /> indicates that the request resulted in a new resource created before the response was sent.</summary>
|
||||
// Token: 0x040007D9 RID: 2009
|
||||
[Token(Token = "0x40007D9")]
|
||||
Created,
|
||||
/// <summary>Equivalent to HTTP status 202. <see cref="F:System.Net.HttpStatusCode.Accepted" /> indicates that the request has been accepted for further processing.</summary>
|
||||
// Token: 0x040007DA RID: 2010
|
||||
[Token(Token = "0x40007DA")]
|
||||
Accepted,
|
||||
/// <summary>Equivalent to HTTP status 203. <see cref="F:System.Net.HttpStatusCode.NonAuthoritativeInformation" /> indicates that the returned metainformation is from a cached copy instead of the origin server and therefore may be incorrect.</summary>
|
||||
// Token: 0x040007DB RID: 2011
|
||||
[Token(Token = "0x40007DB")]
|
||||
NonAuthoritativeInformation,
|
||||
/// <summary>Equivalent to HTTP status 204. <see cref="F:System.Net.HttpStatusCode.NoContent" /> indicates that the request has been successfully processed and that the response is intentionally blank.</summary>
|
||||
// Token: 0x040007DC RID: 2012
|
||||
[Token(Token = "0x40007DC")]
|
||||
NoContent,
|
||||
/// <summary>Equivalent to HTTP status 205. <see cref="F:System.Net.HttpStatusCode.ResetContent" /> indicates that the client should reset (not reload) the current resource.</summary>
|
||||
// Token: 0x040007DD RID: 2013
|
||||
[Token(Token = "0x40007DD")]
|
||||
ResetContent,
|
||||
/// <summary>Equivalent to HTTP status 206. <see cref="F:System.Net.HttpStatusCode.PartialContent" /> indicates that the response is a partial response as requested by a GET request that includes a byte range.</summary>
|
||||
// Token: 0x040007DE RID: 2014
|
||||
[Token(Token = "0x40007DE")]
|
||||
PartialContent,
|
||||
/// <summary>Equivalent to HTTP status 300. <see cref="F:System.Net.HttpStatusCode.MultipleChoices" /> indicates that the requested information has multiple representations. The default action is to treat this status as a redirect and follow the contents of the Location header associated with this response.</summary>
|
||||
// Token: 0x040007DF RID: 2015
|
||||
[Token(Token = "0x40007DF")]
|
||||
MultipleChoices = 300,
|
||||
/// <summary>Equivalent to HTTP status 300. <see cref="F:System.Net.HttpStatusCode.Ambiguous" /> indicates that the requested information has multiple representations. The default action is to treat this status as a redirect and follow the contents of the Location header associated with this response.</summary>
|
||||
// Token: 0x040007E0 RID: 2016
|
||||
[Token(Token = "0x40007E0")]
|
||||
Ambiguous = 300,
|
||||
/// <summary>Equivalent to HTTP status 301. <see cref="F:System.Net.HttpStatusCode.MovedPermanently" /> indicates that the requested information has been moved to the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response.</summary>
|
||||
// Token: 0x040007E1 RID: 2017
|
||||
[Token(Token = "0x40007E1")]
|
||||
MovedPermanently,
|
||||
/// <summary>Equivalent to HTTP status 301. <see cref="F:System.Net.HttpStatusCode.Moved" /> indicates that the requested information has been moved to the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will use the GET method.</summary>
|
||||
// Token: 0x040007E2 RID: 2018
|
||||
[Token(Token = "0x40007E2")]
|
||||
Moved = 301,
|
||||
/// <summary>Equivalent to HTTP status 302. <see cref="F:System.Net.HttpStatusCode.Found" /> indicates that the requested information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will use the GET method.</summary>
|
||||
// Token: 0x040007E3 RID: 2019
|
||||
[Token(Token = "0x40007E3")]
|
||||
Found,
|
||||
/// <summary>Equivalent to HTTP status 302. <see cref="F:System.Net.HttpStatusCode.Redirect" /> indicates that the requested information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will use the GET method.</summary>
|
||||
// Token: 0x040007E4 RID: 2020
|
||||
[Token(Token = "0x40007E4")]
|
||||
Redirect = 302,
|
||||
/// <summary>Equivalent to HTTP status 303. <see cref="F:System.Net.HttpStatusCode.SeeOther" /> automatically redirects the client to the URI specified in the Location header as the result of a POST. The request to the resource specified by the Location header will be made with a GET.</summary>
|
||||
// Token: 0x040007E5 RID: 2021
|
||||
[Token(Token = "0x40007E5")]
|
||||
SeeOther,
|
||||
/// <summary>Equivalent to HTTP status 303. <see cref="F:System.Net.HttpStatusCode.RedirectMethod" /> automatically redirects the client to the URI specified in the Location header as the result of a POST. The request to the resource specified by the Location header will be made with a GET.</summary>
|
||||
// Token: 0x040007E6 RID: 2022
|
||||
[Token(Token = "0x40007E6")]
|
||||
RedirectMethod = 303,
|
||||
/// <summary>Equivalent to HTTP status 304. <see cref="F:System.Net.HttpStatusCode.NotModified" /> indicates that the client's cached copy is up to date. The contents of the resource are not transferred.</summary>
|
||||
// Token: 0x040007E7 RID: 2023
|
||||
[Token(Token = "0x40007E7")]
|
||||
NotModified,
|
||||
/// <summary>Equivalent to HTTP status 305. <see cref="F:System.Net.HttpStatusCode.UseProxy" /> indicates that the request should use the proxy server at the URI specified in the Location header.</summary>
|
||||
// Token: 0x040007E8 RID: 2024
|
||||
[Token(Token = "0x40007E8")]
|
||||
UseProxy,
|
||||
/// <summary>Equivalent to HTTP status 306. <see cref="F:System.Net.HttpStatusCode.Unused" /> is a proposed extension to the HTTP/1.1 specification that is not fully specified.</summary>
|
||||
// Token: 0x040007E9 RID: 2025
|
||||
[Token(Token = "0x40007E9")]
|
||||
Unused,
|
||||
/// <summary>Equivalent to HTTP status 307. <see cref="F:System.Net.HttpStatusCode.TemporaryRedirect" /> indicates that the request information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will also use the POST method.</summary>
|
||||
// Token: 0x040007EA RID: 2026
|
||||
[Token(Token = "0x40007EA")]
|
||||
TemporaryRedirect,
|
||||
/// <summary>Equivalent to HTTP status 307. <see cref="F:System.Net.HttpStatusCode.RedirectKeepVerb" /> indicates that the request information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will also use the POST method.</summary>
|
||||
// Token: 0x040007EB RID: 2027
|
||||
[Token(Token = "0x40007EB")]
|
||||
RedirectKeepVerb = 307,
|
||||
/// <summary>Equivalent to HTTP status 400. <see cref="F:System.Net.HttpStatusCode.BadRequest" /> indicates that the request could not be understood by the server. <see cref="F:System.Net.HttpStatusCode.BadRequest" /> is sent when no other error is applicable, or if the exact error is unknown or does not have its own error code.</summary>
|
||||
// Token: 0x040007EC RID: 2028
|
||||
[Token(Token = "0x40007EC")]
|
||||
BadRequest = 400,
|
||||
/// <summary>Equivalent to HTTP status 401. <see cref="F:System.Net.HttpStatusCode.Unauthorized" /> indicates that the requested resource requires authentication. The WWW-Authenticate header contains the details of how to perform the authentication.</summary>
|
||||
// Token: 0x040007ED RID: 2029
|
||||
[Token(Token = "0x40007ED")]
|
||||
Unauthorized,
|
||||
/// <summary>Equivalent to HTTP status 402. <see cref="F:System.Net.HttpStatusCode.PaymentRequired" /> is reserved for future use.</summary>
|
||||
// Token: 0x040007EE RID: 2030
|
||||
[Token(Token = "0x40007EE")]
|
||||
PaymentRequired,
|
||||
/// <summary>Equivalent to HTTP status 403. <see cref="F:System.Net.HttpStatusCode.Forbidden" /> indicates that the server refuses to fulfill the request.</summary>
|
||||
// Token: 0x040007EF RID: 2031
|
||||
[Token(Token = "0x40007EF")]
|
||||
Forbidden,
|
||||
/// <summary>Equivalent to HTTP status 404. <see cref="F:System.Net.HttpStatusCode.NotFound" /> indicates that the requested resource does not exist on the server.</summary>
|
||||
// Token: 0x040007F0 RID: 2032
|
||||
[Token(Token = "0x40007F0")]
|
||||
NotFound,
|
||||
/// <summary>Equivalent to HTTP status 405. <see cref="F:System.Net.HttpStatusCode.MethodNotAllowed" /> indicates that the request method (POST or GET) is not allowed on the requested resource.</summary>
|
||||
// Token: 0x040007F1 RID: 2033
|
||||
[Token(Token = "0x40007F1")]
|
||||
MethodNotAllowed,
|
||||
/// <summary>Equivalent to HTTP status 406. <see cref="F:System.Net.HttpStatusCode.NotAcceptable" /> indicates that the client has indicated with Accept headers that it will not accept any of the available representations of the resource.</summary>
|
||||
// Token: 0x040007F2 RID: 2034
|
||||
[Token(Token = "0x40007F2")]
|
||||
NotAcceptable,
|
||||
/// <summary>Equivalent to HTTP status 407. <see cref="F:System.Net.HttpStatusCode.ProxyAuthenticationRequired" /> indicates that the requested proxy requires authentication. The Proxy-authenticate header contains the details of how to perform the authentication.</summary>
|
||||
// Token: 0x040007F3 RID: 2035
|
||||
[Token(Token = "0x40007F3")]
|
||||
ProxyAuthenticationRequired,
|
||||
/// <summary>Equivalent to HTTP status 408. <see cref="F:System.Net.HttpStatusCode.RequestTimeout" /> indicates that the client did not send a request within the time the server was expecting the request.</summary>
|
||||
// Token: 0x040007F4 RID: 2036
|
||||
[Token(Token = "0x40007F4")]
|
||||
RequestTimeout,
|
||||
/// <summary>Equivalent to HTTP status 409. <see cref="F:System.Net.HttpStatusCode.Conflict" /> indicates that the request could not be carried out because of a conflict on the server.</summary>
|
||||
// Token: 0x040007F5 RID: 2037
|
||||
[Token(Token = "0x40007F5")]
|
||||
Conflict,
|
||||
/// <summary>Equivalent to HTTP status 410. <see cref="F:System.Net.HttpStatusCode.Gone" /> indicates that the requested resource is no longer available.</summary>
|
||||
// Token: 0x040007F6 RID: 2038
|
||||
[Token(Token = "0x40007F6")]
|
||||
Gone,
|
||||
/// <summary>Equivalent to HTTP status 411. <see cref="F:System.Net.HttpStatusCode.LengthRequired" /> indicates that the required Content-length header is missing.</summary>
|
||||
// Token: 0x040007F7 RID: 2039
|
||||
[Token(Token = "0x40007F7")]
|
||||
LengthRequired,
|
||||
/// <summary>Equivalent to HTTP status 412. <see cref="F:System.Net.HttpStatusCode.PreconditionFailed" /> indicates that a condition set for this request failed, and the request cannot be carried out. Conditions are set with conditional request headers like If-Match, If-None-Match, or If-Unmodified-Since.</summary>
|
||||
// Token: 0x040007F8 RID: 2040
|
||||
[Token(Token = "0x40007F8")]
|
||||
PreconditionFailed,
|
||||
/// <summary>Equivalent to HTTP status 413. <see cref="F:System.Net.HttpStatusCode.RequestEntityTooLarge" /> indicates that the request is too large for the server to process.</summary>
|
||||
// Token: 0x040007F9 RID: 2041
|
||||
[Token(Token = "0x40007F9")]
|
||||
RequestEntityTooLarge,
|
||||
/// <summary>Equivalent to HTTP status 414. <see cref="F:System.Net.HttpStatusCode.RequestUriTooLong" /> indicates that the URI is too long.</summary>
|
||||
// Token: 0x040007FA RID: 2042
|
||||
[Token(Token = "0x40007FA")]
|
||||
RequestUriTooLong,
|
||||
/// <summary>Equivalent to HTTP status 415. <see cref="F:System.Net.HttpStatusCode.UnsupportedMediaType" /> indicates that the request is an unsupported type.</summary>
|
||||
// Token: 0x040007FB RID: 2043
|
||||
[Token(Token = "0x40007FB")]
|
||||
UnsupportedMediaType,
|
||||
/// <summary>Equivalent to HTTP status 416. <see cref="F:System.Net.HttpStatusCode.RequestedRangeNotSatisfiable" /> indicates that the range of data requested from the resource cannot be returned, either because the beginning of the range is before the beginning of the resource, or the end of the range is after the end of the resource.</summary>
|
||||
// Token: 0x040007FC RID: 2044
|
||||
[Token(Token = "0x40007FC")]
|
||||
RequestedRangeNotSatisfiable,
|
||||
/// <summary>Equivalent to HTTP status 417. <see cref="F:System.Net.HttpStatusCode.ExpectationFailed" /> indicates that an expectation given in an Expect header could not be met by the server.</summary>
|
||||
// Token: 0x040007FD RID: 2045
|
||||
[Token(Token = "0x40007FD")]
|
||||
ExpectationFailed,
|
||||
/// <summary>Equivalent to HTTP status 426. <see cref="F:System.Net.HttpStatusCode.UpgradeRequired" /> indicates that the client should switch to a different protocol such as TLS/1.0.</summary>
|
||||
// Token: 0x040007FE RID: 2046
|
||||
[Token(Token = "0x40007FE")]
|
||||
UpgradeRequired = 426,
|
||||
/// <summary>Equivalent to HTTP status 500. <see cref="F:System.Net.HttpStatusCode.InternalServerError" /> indicates that a generic error has occurred on the server.</summary>
|
||||
// Token: 0x040007FF RID: 2047
|
||||
[Token(Token = "0x40007FF")]
|
||||
InternalServerError = 500,
|
||||
/// <summary>Equivalent to HTTP status 501. <see cref="F:System.Net.HttpStatusCode.NotImplemented" /> indicates that the server does not support the requested function.</summary>
|
||||
// Token: 0x04000800 RID: 2048
|
||||
[Token(Token = "0x4000800")]
|
||||
NotImplemented,
|
||||
/// <summary>Equivalent to HTTP status 502. <see cref="F:System.Net.HttpStatusCode.BadGateway" /> indicates that an intermediate proxy server received a bad response from another proxy or the origin server.</summary>
|
||||
// Token: 0x04000801 RID: 2049
|
||||
[Token(Token = "0x4000801")]
|
||||
BadGateway,
|
||||
/// <summary>Equivalent to HTTP status 503. <see cref="F:System.Net.HttpStatusCode.ServiceUnavailable" /> indicates that the server is temporarily unavailable, usually due to high load or maintenance.</summary>
|
||||
// Token: 0x04000802 RID: 2050
|
||||
[Token(Token = "0x4000802")]
|
||||
ServiceUnavailable,
|
||||
/// <summary>Equivalent to HTTP status 504. <see cref="F:System.Net.HttpStatusCode.GatewayTimeout" /> indicates that an intermediate proxy server timed out while waiting for a response from another proxy or the origin server.</summary>
|
||||
// Token: 0x04000803 RID: 2051
|
||||
[Token(Token = "0x4000803")]
|
||||
GatewayTimeout,
|
||||
/// <summary>Equivalent to HTTP status 505. <see cref="F:System.Net.HttpStatusCode.HttpVersionNotSupported" /> indicates that the requested HTTP version is not supported by the server.</summary>
|
||||
// Token: 0x04000804 RID: 2052
|
||||
[Token(Token = "0x4000804")]
|
||||
HttpVersionNotSupported
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Defines the HTTP version numbers that are supported by the <see cref="T:System.Net.HttpWebRequest" /> and <see cref="T:System.Net.HttpWebResponse" /> classes.</summary>
|
||||
// Token: 0x02000223 RID: 547
|
||||
[Token(Token = "0x2000223")]
|
||||
public class HttpVersion
|
||||
{
|
||||
/// <summary>Defines a <see cref="T:System.Version" /> instance for HTTP 1.0.</summary>
|
||||
// Token: 0x04000805 RID: 2053
|
||||
[Token(Token = "0x4000805")]
|
||||
public static readonly Version Version10;
|
||||
|
||||
/// <summary>Defines a <see cref="T:System.Version" /> instance for HTTP 1.1.</summary>
|
||||
// Token: 0x04000806 RID: 2054
|
||||
[Token(Token = "0x4000806")]
|
||||
public static readonly Version Version11;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,1358 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.IO;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using Cpp2IlInjected;
|
||||
using Mono.Security.Interface;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides an HTTP-specific implementation of the <see cref="T:System.Net.WebRequest" /> class.</summary>
|
||||
// Token: 0x0200028F RID: 655
|
||||
[Token(Token = "0x200028F")]
|
||||
[Serializable]
|
||||
public class HttpWebRequest : WebRequest, ISerializable
|
||||
{
|
||||
// Token: 0x060010BC RID: 4284 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010BC")]
|
||||
[Address(RVA = "0xB39340", Offset = "0xB38340", VA = "0x180B39340")]
|
||||
public HttpWebRequest(Uri uri)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.HttpWebRequest" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes. This constructor is obsolete.</summary>
|
||||
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the new <see cref="T:System.Net.HttpWebRequest" /> object.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the new <see cref="T:System.Net.HttpWebRequest" /> object.</param>
|
||||
// Token: 0x060010BD RID: 4285 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010BD")]
|
||||
[Address(RVA = "0xB394F0", Offset = "0xB384F0", VA = "0x180B394F0")]
|
||||
[Obsolete]
|
||||
protected HttpWebRequest(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010BE RID: 4286 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010BE")]
|
||||
[Address(RVA = "0xB38130", Offset = "0xB37130", VA = "0x180B38130")]
|
||||
private void ResetAuthorization()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010BF RID: 4287 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010BF")]
|
||||
[Address(RVA = "0xB38BF0", Offset = "0xB37BF0", VA = "0x180B38BF0")]
|
||||
private void SetSpecialHeaders(string HeaderName, string value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see langword="Accept" /> HTTP header.</summary>
|
||||
/// <returns>The value of the <see langword="Accept" /> HTTP header. The default value is <see langword="null" />.</returns>
|
||||
// Token: 0x1700033E RID: 830
|
||||
// (set) Token: 0x060010C0 RID: 4288 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700033E")]
|
||||
public string Accept
|
||||
{
|
||||
[Token(Token = "0x60010C0")]
|
||||
[Address(RVA = "0xB39D40", Offset = "0xB38D40", VA = "0x180B39D40")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the Uniform Resource Identifier (URI) of the Internet resource that actually responds to the request.</summary>
|
||||
/// <returns>A <see cref="T:System.Uri" /> that identifies the Internet resource that actually responds to the request. The default is the URI used by the <see cref="M:System.Net.WebRequest.Create(System.String)" /> method to initialize the request.</returns>
|
||||
// Token: 0x1700033F RID: 831
|
||||
// (get) Token: 0x060010C1 RID: 4289 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060010C2 RID: 4290 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700033F")]
|
||||
public Uri Address
|
||||
{
|
||||
[Token(Token = "0x60010C1")]
|
||||
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60010C2")]
|
||||
[Address(RVA = "0x417960", Offset = "0x416960", VA = "0x180417960")]
|
||||
internal set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that indicates whether to buffer the data sent to the Internet resource.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to enable buffering of the data sent to the Internet resource; <see langword="false" /> to disable buffering. The default is <see langword="true" />.</returns>
|
||||
// Token: 0x17000340 RID: 832
|
||||
// (get) Token: 0x060010C3 RID: 4291 RVA: 0x00007DE8 File Offset: 0x00005FE8
|
||||
[Token(Token = "0x17000340")]
|
||||
public virtual bool AllowWriteStreamBuffering
|
||||
{
|
||||
[Token(Token = "0x60010C3")]
|
||||
[Address(RVA = "0x4B4FE0", Offset = "0x4B3FE0", VA = "0x1804B4FE0", Slot = "26")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the type of decompression that is used.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.DecompressionMethods" /> object that indicates the type of decompression that is used.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The object's current state does not allow this property to be set.</exception>
|
||||
// Token: 0x17000341 RID: 833
|
||||
// (get) Token: 0x060010C4 RID: 4292 RVA: 0x00007E00 File Offset: 0x00006000
|
||||
[Token(Token = "0x17000341")]
|
||||
public DecompressionMethods AutomaticDecompression
|
||||
{
|
||||
[Token(Token = "0x60010C4")]
|
||||
[Address(RVA = "0xB39AD0", Offset = "0xB38AD0", VA = "0x180B39AD0")]
|
||||
get
|
||||
{
|
||||
return DecompressionMethods.None;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000342 RID: 834
|
||||
// (get) Token: 0x060010C5 RID: 4293 RVA: 0x00007E18 File Offset: 0x00006018
|
||||
[Token(Token = "0x17000342")]
|
||||
internal bool InternalAllowBuffering
|
||||
{
|
||||
[Token(Token = "0x60010C5")]
|
||||
[Address(RVA = "0xB39B80", Offset = "0xB38B80", VA = "0x180B39B80")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000343 RID: 835
|
||||
// (get) Token: 0x060010C6 RID: 4294 RVA: 0x00007E30 File Offset: 0x00006030
|
||||
[Token(Token = "0x17000343")]
|
||||
private bool MethodWithBuffer
|
||||
{
|
||||
[Token(Token = "0x60010C6")]
|
||||
[Address(RVA = "0xB39B90", Offset = "0xB38B90", VA = "0x180B39B90")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000344 RID: 836
|
||||
// (get) Token: 0x060010C7 RID: 4295 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000344")]
|
||||
internal MonoTlsProvider TlsProvider
|
||||
{
|
||||
[Token(Token = "0x60010C7")]
|
||||
[Address(RVA = "0x675290", Offset = "0x674290", VA = "0x180675290")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000345 RID: 837
|
||||
// (get) Token: 0x060010C8 RID: 4296 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000345")]
|
||||
internal MonoTlsSettings TlsSettings
|
||||
{
|
||||
[Token(Token = "0x60010C8")]
|
||||
[Address(RVA = "0x4D9750", Offset = "0x4D8750", VA = "0x1804D9750")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the collection of security certificates that are associated with this request.</summary>
|
||||
/// <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> that contains the security certificates associated with this request.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">The value specified for a set operation is <see langword="null" />.</exception>
|
||||
// Token: 0x17000346 RID: 838
|
||||
// (get) Token: 0x060010C9 RID: 4297 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000346")]
|
||||
public X509CertificateCollection ClientCertificates
|
||||
{
|
||||
[Token(Token = "0x60010C9")]
|
||||
[Address(RVA = "0xB39AE0", Offset = "0xB38AE0", VA = "0x180B39AE0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see langword="Connection" /> HTTP header.</summary>
|
||||
/// <returns>The value of the <see langword="Connection" /> HTTP header. The default value is <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">The value of <see cref="P:System.Net.HttpWebRequest.Connection" /> is set to Keep-alive or Close.</exception>
|
||||
// Token: 0x17000347 RID: 839
|
||||
// (set) Token: 0x060010CA RID: 4298 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000347")]
|
||||
public string Connection
|
||||
{
|
||||
[Token(Token = "0x60010CA")]
|
||||
[Address(RVA = "0xB39DE0", Offset = "0xB38DE0", VA = "0x180B39DE0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the <see langword="Content-length" /> HTTP header.</summary>
|
||||
/// <returns>The number of bytes of data to send to the Internet resource. The default is -1, which indicates the property has not been set and that there is no request data to send.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The request has been started by calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The new <see cref="P:System.Net.HttpWebRequest.ContentLength" /> value is less than 0.</exception>
|
||||
// Token: 0x17000348 RID: 840
|
||||
// (get) Token: 0x060010CB RID: 4299 RVA: 0x00007E48 File Offset: 0x00006048
|
||||
// (set) Token: 0x060010CC RID: 4300 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000348")]
|
||||
public override long ContentLength
|
||||
{
|
||||
[Token(Token = "0x60010CB")]
|
||||
[Address(RVA = "0x4177D0", Offset = "0x4167D0", VA = "0x1804177D0", Slot = "14")]
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
[Token(Token = "0x60010CC")]
|
||||
[Address(RVA = "0xB39F90", Offset = "0xB38F90", VA = "0x180B39F90", Slot = "15")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000349 RID: 841
|
||||
// (set) Token: 0x060010CD RID: 4301 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000349")]
|
||||
internal long InternalContentLength
|
||||
{
|
||||
[Token(Token = "0x60010CD")]
|
||||
[Address(RVA = "0x417AC0", Offset = "0x416AC0", VA = "0x180417AC0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700034A RID: 842
|
||||
// (get) Token: 0x060010CE RID: 4302 RVA: 0x00007E60 File Offset: 0x00006060
|
||||
// (set) Token: 0x060010CF RID: 4303 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700034A")]
|
||||
internal bool ThrowOnError
|
||||
{
|
||||
[Token(Token = "0x60010CE")]
|
||||
[Address(RVA = "0xB39CC0", Offset = "0xB38CC0", VA = "0x180B39CC0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60010CF")]
|
||||
[Address(RVA = "0xB3A8E0", Offset = "0xB398E0", VA = "0x180B3A8E0")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see langword="Content-type" /> HTTP header.</summary>
|
||||
/// <returns>The value of the <see langword="Content-type" /> HTTP header. The default value is <see langword="null" />.</returns>
|
||||
// Token: 0x1700034B RID: 843
|
||||
// (set) Token: 0x060010D0 RID: 4304 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700034B")]
|
||||
public override string ContentType
|
||||
{
|
||||
[Token(Token = "0x60010D0")]
|
||||
[Address(RVA = "0xB3A060", Offset = "0xB39060", VA = "0x180B3A060", Slot = "16")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets authentication information for the request.</summary>
|
||||
/// <returns>An <see cref="T:System.Net.ICredentials" /> that contains the authentication credentials associated with the request. The default is <see langword="null" />.</returns>
|
||||
// Token: 0x1700034C RID: 844
|
||||
// (get) Token: 0x060010D1 RID: 4305 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060010D2 RID: 4306 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700034C")]
|
||||
public override ICredentials Credentials
|
||||
{
|
||||
[Token(Token = "0x60010D1")]
|
||||
[Address(RVA = "0x4177B0", Offset = "0x4167B0", VA = "0x1804177B0", Slot = "17")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60010D2")]
|
||||
[Address(RVA = "0x417AA0", Offset = "0x416AA0", VA = "0x180417AA0", Slot = "18")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see langword="Expect" /> HTTP header.</summary>
|
||||
/// <returns>The contents of the <see langword="Expect" /> HTTP header. The default value is <see langword="null" />.
|
||||
///
|
||||
/// The value for this property is stored in <see cref="T:System.Net.WebHeaderCollection" />. If WebHeaderCollection is set, the property value is lost.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <see langword="Expect" /> is set to a string that contains "100-continue" as a substring.</exception>
|
||||
// Token: 0x1700034D RID: 845
|
||||
// (set) Token: 0x060010D3 RID: 4307 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700034D")]
|
||||
public string Expect
|
||||
{
|
||||
[Token(Token = "0x60010D3")]
|
||||
[Address(RVA = "0xB3A0C0", Offset = "0xB390C0", VA = "0x180B3A0C0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Specifies a collection of the name/value pairs that make up the HTTP headers.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains the name/value pairs that make up the headers for the HTTP request.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The request has been started by calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method.</exception>
|
||||
// Token: 0x1700034E RID: 846
|
||||
// (get) Token: 0x060010D4 RID: 4308 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060010D5 RID: 4309 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700034E")]
|
||||
public override WebHeaderCollection Headers
|
||||
{
|
||||
[Token(Token = "0x60010D4")]
|
||||
[Address(RVA = "0x54F060", Offset = "0x54E060", VA = "0x18054F060", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60010D5")]
|
||||
[Address(RVA = "0xB3A220", Offset = "0xB39220", VA = "0x180B3A220", Slot = "13")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the Host header value to use in an HTTP request independent from the request URI.</summary>
|
||||
/// <returns>The Host header value in the HTTP request.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">The Host header cannot be set to <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">The Host header cannot be set to an invalid value.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">The Host header cannot be set after the <see cref="T:System.Net.HttpWebRequest" /> has already started to be sent.</exception>
|
||||
// Token: 0x1700034F RID: 847
|
||||
// (get) Token: 0x060010D6 RID: 4310 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060010D7 RID: 4311 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700034F")]
|
||||
public string Host
|
||||
{
|
||||
[Token(Token = "0x60010D6")]
|
||||
[Address(RVA = "0xB39B50", Offset = "0xB38B50", VA = "0x180B39B50")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60010D7")]
|
||||
[Address(RVA = "0xB3A390", Offset = "0xB39390", VA = "0x180B3A390")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060010D8 RID: 4312 RVA: 0x00007E78 File Offset: 0x00006078
|
||||
[Token(Token = "0x60010D8")]
|
||||
[Address(RVA = "0xB36680", Offset = "0xB35680", VA = "0x180B36680")]
|
||||
private static bool CheckValidHost(string scheme, string val)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that indicates whether to make a persistent connection to the Internet resource.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the request to the Internet resource should contain a <see langword="Connection" /> HTTP header with the value Keep-alive; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
|
||||
// Token: 0x17000350 RID: 848
|
||||
// (get) Token: 0x060010D9 RID: 4313 RVA: 0x00007E90 File Offset: 0x00006090
|
||||
[Token(Token = "0x17000350")]
|
||||
public bool KeepAlive
|
||||
{
|
||||
[Token(Token = "0x60010D9")]
|
||||
[Address(RVA = "0x7751D0", Offset = "0x7741D0", VA = "0x1807751D0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a time-out in milliseconds when writing to or reading from a stream.</summary>
|
||||
/// <returns>The number of milliseconds before the writing or reading times out. The default value is 300,000 milliseconds (5 minutes).</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The request has already been sent.</exception>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The value specified for a set operation is less than or equal to zero and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /></exception>
|
||||
// Token: 0x17000351 RID: 849
|
||||
// (get) Token: 0x060010DA RID: 4314 RVA: 0x00007EA8 File Offset: 0x000060A8
|
||||
[Token(Token = "0x17000351")]
|
||||
public int ReadWriteTimeout
|
||||
{
|
||||
[Token(Token = "0x60010DA")]
|
||||
[Address(RVA = "0xB39C80", Offset = "0xB38C80", VA = "0x180B39C80")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the method for the request.</summary>
|
||||
/// <returns>The request method to use to contact the Internet resource. The default value is GET.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">No method is supplied.
|
||||
/// -or-
|
||||
/// The method string contains invalid characters.</exception>
|
||||
// Token: 0x17000352 RID: 850
|
||||
// (get) Token: 0x060010DB RID: 4315 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060010DC RID: 4316 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000352")]
|
||||
public override string Method
|
||||
{
|
||||
[Token(Token = "0x60010DB")]
|
||||
[Address(RVA = "0x4646C0", Offset = "0x4636C0", VA = "0x1804646C0", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60010DC")]
|
||||
[Address(RVA = "0xB3A5B0", Offset = "0xB395B0", VA = "0x180B3A5B0", Slot = "10")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets proxy information for the request.</summary>
|
||||
/// <returns>The <see cref="T:System.Net.IWebProxy" /> object to use to proxy the request. The default value is set by calling the <see cref="P:System.Net.GlobalProxySelection.Select" /> property.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <see cref="P:System.Net.HttpWebRequest.Proxy" /> is set to <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">The request has been started by calling <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
|
||||
/// <exception cref="T:System.Security.SecurityException">The caller does not have permission for the requested operation.</exception>
|
||||
// Token: 0x17000353 RID: 851
|
||||
// (get) Token: 0x060010DD RID: 4317 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060010DE RID: 4318 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000353")]
|
||||
public override IWebProxy Proxy
|
||||
{
|
||||
[Token(Token = "0x60010DD")]
|
||||
[Address(RVA = "0x44C890", Offset = "0x44B890", VA = "0x18044C890", Slot = "19")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60010DE")]
|
||||
[Address(RVA = "0xB3A740", Offset = "0xB39740", VA = "0x180B3A740", Slot = "20")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see langword="Referer" /> HTTP header.</summary>
|
||||
/// <returns>The value of the <see langword="Referer" /> HTTP header. The default value is <see langword="null" />.</returns>
|
||||
// Token: 0x17000354 RID: 852
|
||||
// (set) Token: 0x060010DF RID: 4319 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000354")]
|
||||
public string Referer
|
||||
{
|
||||
[Token(Token = "0x60010DF")]
|
||||
[Address(RVA = "0xB3A7D0", Offset = "0xB397D0", VA = "0x180B3A7D0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the original Uniform Resource Identifier (URI) of the request.</summary>
|
||||
/// <returns>A <see cref="T:System.Uri" /> that contains the URI of the Internet resource passed to the <see cref="M:System.Net.WebRequest.Create(System.String)" /> method.</returns>
|
||||
// Token: 0x17000355 RID: 853
|
||||
// (get) Token: 0x060010E0 RID: 4320 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000355")]
|
||||
public override Uri RequestUri
|
||||
{
|
||||
[Token(Token = "0x60010E0")]
|
||||
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0", Slot = "11")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that indicates whether to send data in segments to the Internet resource.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to send data to the Internet resource in segments; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The request has been started by calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method.</exception>
|
||||
// Token: 0x17000356 RID: 854
|
||||
// (get) Token: 0x060010E1 RID: 4321 RVA: 0x00007EC0 File Offset: 0x000060C0
|
||||
[Token(Token = "0x17000356")]
|
||||
public bool SendChunked
|
||||
{
|
||||
[Token(Token = "0x60010E1")]
|
||||
[Address(RVA = "0x44BFF0", Offset = "0x44AFF0", VA = "0x18044BFF0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the service point to use for the request.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.ServicePoint" /> that represents the network connection to the Internet resource.</returns>
|
||||
// Token: 0x17000357 RID: 855
|
||||
// (get) Token: 0x060010E2 RID: 4322 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000357")]
|
||||
public ServicePoint ServicePoint
|
||||
{
|
||||
[Token(Token = "0x60010E2")]
|
||||
[Address(RVA = "0xB39CB0", Offset = "0xB38CB0", VA = "0x180B39CB0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000358 RID: 856
|
||||
// (get) Token: 0x060010E3 RID: 4323 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000358")]
|
||||
internal ServicePoint ServicePointNoLock
|
||||
{
|
||||
[Token(Token = "0x60010E3")]
|
||||
[Address(RVA = "0x42D460", Offset = "0x42C460", VA = "0x18042D460")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the time-out value in milliseconds for the <see cref="M:System.Net.HttpWebRequest.GetResponse" /> and <see cref="M:System.Net.HttpWebRequest.GetRequestStream" /> methods.</summary>
|
||||
/// <returns>The number of milliseconds to wait before the request times out. The default value is 100,000 milliseconds (100 seconds).</returns>
|
||||
/// <exception cref="T:System.ArgumentOutOfRangeException">The value specified is less than zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
|
||||
// Token: 0x17000359 RID: 857
|
||||
// (get) Token: 0x060010E4 RID: 4324 RVA: 0x00007ED8 File Offset: 0x000060D8
|
||||
[Token(Token = "0x17000359")]
|
||||
public override int Timeout
|
||||
{
|
||||
[Token(Token = "0x60010E4")]
|
||||
[Address(RVA = "0xB39CD0", Offset = "0xB38CD0", VA = "0x180B39CD0", Slot = "21")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see langword="Transfer-encoding" /> HTTP header.</summary>
|
||||
/// <returns>The value of the <see langword="Transfer-encoding" /> HTTP header. The default value is <see langword="null" />.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">
|
||||
/// <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set when <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to the value "Chunked".</exception>
|
||||
// Token: 0x1700035A RID: 858
|
||||
// (get) Token: 0x060010E5 RID: 4325 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700035A")]
|
||||
public string TransferEncoding
|
||||
{
|
||||
[Token(Token = "0x60010E5")]
|
||||
[Address(RVA = "0xB39CE0", Offset = "0xB38CE0", VA = "0x180B39CE0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the value of the <see langword="User-agent" /> HTTP header.</summary>
|
||||
/// <returns>The value of the <see langword="User-agent" /> HTTP header. The default value is <see langword="null" />.
|
||||
///
|
||||
/// The value for this property is stored in <see cref="T:System.Net.WebHeaderCollection" />. If WebHeaderCollection is set, the property value is lost.</returns>
|
||||
// Token: 0x1700035B RID: 859
|
||||
// (set) Token: 0x060010E6 RID: 4326 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700035B")]
|
||||
public string UserAgent
|
||||
{
|
||||
[Token(Token = "0x60010E6")]
|
||||
[Address(RVA = "0xB3A8F0", Offset = "0xB398F0", VA = "0x180B3A8F0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a value that indicates whether to allow high-speed NTLM-authenticated connection sharing.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> to keep the authenticated connection open; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x1700035C RID: 860
|
||||
// (get) Token: 0x060010E7 RID: 4327 RVA: 0x00007EF0 File Offset: 0x000060F0
|
||||
[Token(Token = "0x1700035C")]
|
||||
public bool UnsafeAuthenticatedConnectionSharing
|
||||
{
|
||||
[Token(Token = "0x60010E7")]
|
||||
[Address(RVA = "0xB39D30", Offset = "0xB38D30", VA = "0x180B39D30")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700035D RID: 861
|
||||
// (get) Token: 0x060010E8 RID: 4328 RVA: 0x00007F08 File Offset: 0x00006108
|
||||
// (set) Token: 0x060010E9 RID: 4329 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x1700035D")]
|
||||
internal bool ExpectContinue
|
||||
{
|
||||
[Token(Token = "0x60010E8")]
|
||||
[Address(RVA = "0xB39B40", Offset = "0xB38B40", VA = "0x180B39B40")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60010E9")]
|
||||
[Address(RVA = "0xB3A0B0", Offset = "0xB390B0", VA = "0x180B3A0B0")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700035E RID: 862
|
||||
// (get) Token: 0x060010EA RID: 4330 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700035E")]
|
||||
internal Uri AuthUri
|
||||
{
|
||||
[Token(Token = "0x60010EA")]
|
||||
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700035F RID: 863
|
||||
// (get) Token: 0x060010EB RID: 4331 RVA: 0x00007F20 File Offset: 0x00006120
|
||||
[Token(Token = "0x1700035F")]
|
||||
internal bool ProxyQuery
|
||||
{
|
||||
[Token(Token = "0x60010EB")]
|
||||
[Address(RVA = "0xB39C40", Offset = "0xB38C40", VA = "0x180B39C40")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000360 RID: 864
|
||||
// (get) Token: 0x060010EC RID: 4332 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000360")]
|
||||
internal ServerCertValidationCallback ServerCertValidationCallback
|
||||
{
|
||||
[Token(Token = "0x60010EC")]
|
||||
[Address(RVA = "0xB39CA0", Offset = "0xB38CA0", VA = "0x180B39CA0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060010ED RID: 4333 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010ED")]
|
||||
[Address(RVA = "0xB37A20", Offset = "0xB36A20", VA = "0x180B37A20")]
|
||||
internal ServicePoint GetServicePoint()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060010EE RID: 4334 RVA: 0x00007F38 File Offset: 0x00006138
|
||||
[Token(Token = "0x60010EE")]
|
||||
[Address(RVA = "0xB36380", Offset = "0xB35380", VA = "0x180B36380")]
|
||||
private bool CheckIfForceWrite(SimpleAsyncResult result)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Begins an asynchronous request to an Internet resource.</summary>
|
||||
/// <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate</param>
|
||||
/// <param name="state">The state object for this request.</param>
|
||||
/// <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request for a response.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />
|
||||
/// -or-
|
||||
/// <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to a value and <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.
|
||||
/// -or-
|
||||
/// The thread pool is running out of threads.</exception>
|
||||
/// <exception cref="T:System.Net.ProtocolViolationException">
|
||||
/// <see cref="P:System.Net.HttpWebRequest.Method" /> is GET or HEAD, and either <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater than zero or <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="true" />.
|
||||
/// -or-
|
||||
/// <see cref="P:System.Net.HttpWebRequest.KeepAlive" /> is <see langword="true" />, <see cref="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering" /> is <see langword="false" />, and either <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is -1, <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" /> and <see cref="P:System.Net.HttpWebRequest.Method" /> is POST or PUT.
|
||||
/// -or-
|
||||
/// The <see cref="T:System.Net.HttpWebRequest" /> has an entity body but the <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method is called without calling the <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" /> method.
|
||||
/// -or-
|
||||
/// The <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater than zero, but the application does not write all of the promised data.</exception>
|
||||
/// <exception cref="T:System.Net.WebException">
|
||||
/// <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.</exception>
|
||||
// Token: 0x060010EF RID: 4335 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010EF")]
|
||||
[Address(RVA = "0xB35950", Offset = "0xB34950", VA = "0x180B35950", Slot = "23")]
|
||||
public override IAsyncResult BeginGetResponse(AsyncCallback callback, object state)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Ends an asynchronous request to an Internet resource.</summary>
|
||||
/// <param name="asyncResult">The pending request for a response.</param>
|
||||
/// <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the Internet resource.</returns>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="asyncResult" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.InvalidOperationException">This method was called previously using <paramref name="asyncResult." />
|
||||
/// -or-
|
||||
/// The <see cref="P:System.Net.HttpWebRequest.ContentLength" /> property is greater than 0 but the data has not been written to the request stream.</exception>
|
||||
/// <exception cref="T:System.Net.WebException">
|
||||
/// <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.
|
||||
/// -or-
|
||||
/// An error occurred while processing the request.</exception>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="asyncResult" /> was not returned by the current instance from a call to <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
|
||||
// Token: 0x060010F0 RID: 4336 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010F0")]
|
||||
[Address(RVA = "0xB36960", Offset = "0xB35960", VA = "0x180B36960", Slot = "24")]
|
||||
public override WebResponse EndGetResponse(IAsyncResult asyncResult)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns a response from an Internet resource.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the Internet resource.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.
|
||||
/// -or-
|
||||
/// <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to a value and <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.</exception>
|
||||
/// <exception cref="T:System.Net.ProtocolViolationException">
|
||||
/// <see cref="P:System.Net.HttpWebRequest.Method" /> is GET or HEAD, and either <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater or equal to zero or <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="true" />.
|
||||
/// -or-
|
||||
/// <see cref="P:System.Net.HttpWebRequest.KeepAlive" /> is <see langword="true" />, <see cref="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering" /> is <see langword="false" />, <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is -1, <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />, and <see cref="P:System.Net.HttpWebRequest.Method" /> is POST or PUT.
|
||||
/// -or-
|
||||
/// The <see cref="T:System.Net.HttpWebRequest" /> has an entity body but the <see cref="M:System.Net.HttpWebRequest.GetResponse" /> method is called without calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" /> method.
|
||||
/// -or-
|
||||
/// The <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater than zero, but the application does not write all of the promised data.</exception>
|
||||
/// <exception cref="T:System.NotSupportedException">The request cache validator indicated that the response for this request can be served from the cache; however, this request includes data to be sent to the server. Requests that send data must not use the cache. This exception can occur if you are using a custom cache validator that is incorrectly implemented.</exception>
|
||||
/// <exception cref="T:System.Net.WebException">
|
||||
/// <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.
|
||||
/// -or-
|
||||
/// The time-out period for the request expired.
|
||||
/// -or-
|
||||
/// An error occurred while processing the request.</exception>
|
||||
// Token: 0x060010F1 RID: 4337 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010F1")]
|
||||
[Address(RVA = "0xB37970", Offset = "0xB36970", VA = "0x180B37970", Slot = "22")]
|
||||
public override WebResponse GetResponse()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000361 RID: 865
|
||||
// (get) Token: 0x060010F2 RID: 4338 RVA: 0x00007F50 File Offset: 0x00006150
|
||||
// (set) Token: 0x060010F3 RID: 4339 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000361")]
|
||||
internal bool FinishedReading
|
||||
{
|
||||
[Token(Token = "0x60010F2")]
|
||||
[Address(RVA = "0x44BD60", Offset = "0x44AD60", VA = "0x18044BD60")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x60010F3")]
|
||||
[Address(RVA = "0x90D370", Offset = "0x90C370", VA = "0x18090D370")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000362 RID: 866
|
||||
// (get) Token: 0x060010F4 RID: 4340 RVA: 0x00007F68 File Offset: 0x00006168
|
||||
[Token(Token = "0x17000362")]
|
||||
internal bool Aborted
|
||||
{
|
||||
[Token(Token = "0x60010F4")]
|
||||
[Address(RVA = "0xB39AA0", Offset = "0xB38AA0", VA = "0x180B39AA0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Cancels a request to an Internet resource.</summary>
|
||||
// Token: 0x060010F5 RID: 4341 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010F5")]
|
||||
[Address(RVA = "0xB356E0", Offset = "0xB346E0", VA = "0x180B356E0", Slot = "25")]
|
||||
public override void Abort()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
|
||||
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
|
||||
// Token: 0x060010F6 RID: 4342 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010F6")]
|
||||
[Address(RVA = "0x77AA00", Offset = "0x779A00", VA = "0x18077AA00", Slot = "6")]
|
||||
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data required to serialize the target object.</summary>
|
||||
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
|
||||
// Token: 0x060010F7 RID: 4343 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010F7")]
|
||||
[Address(RVA = "0xB37250", Offset = "0xB36250", VA = "0x180B37250", Slot = "7")]
|
||||
protected override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010F8 RID: 4344 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010F8")]
|
||||
[Address(RVA = "0xB364D0", Offset = "0xB354D0", VA = "0x180B364D0")]
|
||||
private void CheckRequestStarted()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010F9 RID: 4345 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010F9")]
|
||||
[Address(RVA = "0xB367E0", Offset = "0xB357E0", VA = "0x180B367E0")]
|
||||
internal void DoContinueDelegate(int statusCode, WebHeaderCollection headers)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010FA RID: 4346 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010FA")]
|
||||
[Address(RVA = "0xB38170", Offset = "0xB37170", VA = "0x180B38170")]
|
||||
private void RewriteRedirectToGet()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010FB RID: 4347 RVA: 0x00007F80 File Offset: 0x00006180
|
||||
[Token(Token = "0x60010FB")]
|
||||
[Address(RVA = "0xB37CF0", Offset = "0xB36CF0", VA = "0x180B37CF0")]
|
||||
private bool Redirect(WebAsyncResult result, HttpStatusCode code, WebResponse response)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060010FC RID: 4348 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010FC")]
|
||||
[Address(RVA = "0xB36AE0", Offset = "0xB35AE0", VA = "0x180B36AE0")]
|
||||
private string GetHeaders()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x060010FD RID: 4349 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010FD")]
|
||||
[Address(RVA = "0xB36800", Offset = "0xB35800", VA = "0x180B36800")]
|
||||
private void DoPreAuthenticate()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010FE RID: 4350 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60010FE")]
|
||||
[Address(RVA = "0xB38D50", Offset = "0xB37D50", VA = "0x180B38D50")]
|
||||
internal void SetWriteStreamError(WebExceptionStatus status, Exception exc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x060010FF RID: 4351 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60010FF")]
|
||||
[Address(RVA = "0xB37540", Offset = "0xB36540", VA = "0x180B37540")]
|
||||
internal byte[] GetRequestHeaders()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001100 RID: 4352 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001100")]
|
||||
[Address(RVA = "0xB38F60", Offset = "0xB37F60", VA = "0x180B38F60")]
|
||||
internal void SetWriteStream(WebConnectionStream stream)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001101 RID: 4353 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001101")]
|
||||
[Address(RVA = "0xB38EE0", Offset = "0xB37EE0", VA = "0x180B38EE0")]
|
||||
private void SetWriteStreamInner(SimpleAsyncCallback callback)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001102 RID: 4354 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001102")]
|
||||
[Address(RVA = "0xB38CB0", Offset = "0xB37CB0", VA = "0x180B38CB0")]
|
||||
private void SetWriteStreamError(Exception exc)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001103 RID: 4355 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001103")]
|
||||
[Address(RVA = "0xB389A0", Offset = "0xB379A0", VA = "0x180B389A0")]
|
||||
internal void SetResponseError(WebExceptionStatus status, Exception e, string where)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001104 RID: 4356 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001104")]
|
||||
[Address(RVA = "0xB36540", Offset = "0xB35540", VA = "0x180B36540")]
|
||||
private void CheckSendError(WebConnectionData data)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001105 RID: 4357 RVA: 0x00007F98 File Offset: 0x00006198
|
||||
[Token(Token = "0x6001105")]
|
||||
[Address(RVA = "0xB37B30", Offset = "0xB36B30", VA = "0x180B37B30")]
|
||||
private bool HandleNtlmAuth(WebAsyncResult r)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001106 RID: 4358 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001106")]
|
||||
[Address(RVA = "0xB381D0", Offset = "0xB371D0", VA = "0x180B381D0")]
|
||||
internal void SetResponseData(WebConnectionData data)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001107 RID: 4359 RVA: 0x00007FB0 File Offset: 0x000061B0
|
||||
[Token(Token = "0x6001107")]
|
||||
[Address(RVA = "0xB35C20", Offset = "0xB34C20", VA = "0x180B35C20")]
|
||||
private bool CheckAuthorization(WebResponse response, HttpStatusCode code)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001108 RID: 4360 RVA: 0x00007FC8 File Offset: 0x000061C8
|
||||
[Token(Token = "0x6001108")]
|
||||
[Address(RVA = "0xB35C50", Offset = "0xB34C50", VA = "0x180B35C50")]
|
||||
private bool CheckFinalStatus(WebAsyncResult result)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x17000363 RID: 867
|
||||
// (get) Token: 0x06001109 RID: 4361 RVA: 0x00007FE0 File Offset: 0x000061E0
|
||||
// (set) Token: 0x0600110A RID: 4362 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000363")]
|
||||
internal bool ReuseConnection
|
||||
{
|
||||
[Token(Token = "0x6001109")]
|
||||
[Address(RVA = "0xB39C90", Offset = "0xB38C90", VA = "0x180B39C90")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
[Token(Token = "0x600110A")]
|
||||
[Address(RVA = "0xB3A8D0", Offset = "0xB398D0", VA = "0x180B3A8D0")]
|
||||
[CompilerGenerated]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.HttpWebRequest" /> class. This constructor is obsolete.</summary>
|
||||
// Token: 0x0600110E RID: 4366 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600110E")]
|
||||
[Address(RVA = "0xB39310", Offset = "0xB38310", VA = "0x180B39310")]
|
||||
[Obsolete]
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
[Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
|
||||
public HttpWebRequest()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x040009BD RID: 2493
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x40009BD")]
|
||||
private Uri requestUri;
|
||||
|
||||
// Token: 0x040009BE RID: 2494
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x40009BE")]
|
||||
private Uri actualUri;
|
||||
|
||||
// Token: 0x040009BF RID: 2495
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x40009BF")]
|
||||
private bool hostChanged;
|
||||
|
||||
// Token: 0x040009C0 RID: 2496
|
||||
[FieldOffset(Offset = "0x49")]
|
||||
[Token(Token = "0x40009C0")]
|
||||
private bool allowAutoRedirect;
|
||||
|
||||
// Token: 0x040009C1 RID: 2497
|
||||
[FieldOffset(Offset = "0x4A")]
|
||||
[Token(Token = "0x40009C1")]
|
||||
private bool allowBuffering;
|
||||
|
||||
// Token: 0x040009C2 RID: 2498
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x40009C2")]
|
||||
private X509CertificateCollection certificates;
|
||||
|
||||
// Token: 0x040009C3 RID: 2499
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x40009C3")]
|
||||
private string connectionGroup;
|
||||
|
||||
// Token: 0x040009C4 RID: 2500
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x40009C4")]
|
||||
private bool haveContentLength;
|
||||
|
||||
// Token: 0x040009C5 RID: 2501
|
||||
[FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x40009C5")]
|
||||
private long contentLength;
|
||||
|
||||
// Token: 0x040009C6 RID: 2502
|
||||
[FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x40009C6")]
|
||||
private HttpContinueDelegate continueDelegate;
|
||||
|
||||
// Token: 0x040009C7 RID: 2503
|
||||
[FieldOffset(Offset = "0x78")]
|
||||
[Token(Token = "0x40009C7")]
|
||||
private CookieContainer cookieContainer;
|
||||
|
||||
// Token: 0x040009C8 RID: 2504
|
||||
[FieldOffset(Offset = "0x80")]
|
||||
[Token(Token = "0x40009C8")]
|
||||
private ICredentials credentials;
|
||||
|
||||
// Token: 0x040009C9 RID: 2505
|
||||
[FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x40009C9")]
|
||||
private bool haveResponse;
|
||||
|
||||
// Token: 0x040009CA RID: 2506
|
||||
[FieldOffset(Offset = "0x89")]
|
||||
[Token(Token = "0x40009CA")]
|
||||
private bool haveRequest;
|
||||
|
||||
// Token: 0x040009CB RID: 2507
|
||||
[FieldOffset(Offset = "0x8A")]
|
||||
[Token(Token = "0x40009CB")]
|
||||
private bool requestSent;
|
||||
|
||||
// Token: 0x040009CC RID: 2508
|
||||
[FieldOffset(Offset = "0x90")]
|
||||
[Token(Token = "0x40009CC")]
|
||||
private WebHeaderCollection webHeaders;
|
||||
|
||||
// Token: 0x040009CD RID: 2509
|
||||
[FieldOffset(Offset = "0x98")]
|
||||
[Token(Token = "0x40009CD")]
|
||||
private bool keepAlive;
|
||||
|
||||
// Token: 0x040009CE RID: 2510
|
||||
[FieldOffset(Offset = "0x9C")]
|
||||
[Token(Token = "0x40009CE")]
|
||||
private int maxAutoRedirect;
|
||||
|
||||
// Token: 0x040009CF RID: 2511
|
||||
[FieldOffset(Offset = "0xA0")]
|
||||
[Token(Token = "0x40009CF")]
|
||||
private string mediaType;
|
||||
|
||||
// Token: 0x040009D0 RID: 2512
|
||||
[FieldOffset(Offset = "0xA8")]
|
||||
[Token(Token = "0x40009D0")]
|
||||
private string method;
|
||||
|
||||
// Token: 0x040009D1 RID: 2513
|
||||
[FieldOffset(Offset = "0xB0")]
|
||||
[Token(Token = "0x40009D1")]
|
||||
private string initialMethod;
|
||||
|
||||
// Token: 0x040009D2 RID: 2514
|
||||
[FieldOffset(Offset = "0xB8")]
|
||||
[Token(Token = "0x40009D2")]
|
||||
private bool pipelined;
|
||||
|
||||
// Token: 0x040009D3 RID: 2515
|
||||
[FieldOffset(Offset = "0xB9")]
|
||||
[Token(Token = "0x40009D3")]
|
||||
private bool preAuthenticate;
|
||||
|
||||
// Token: 0x040009D4 RID: 2516
|
||||
[FieldOffset(Offset = "0xBA")]
|
||||
[Token(Token = "0x40009D4")]
|
||||
private bool usedPreAuth;
|
||||
|
||||
// Token: 0x040009D5 RID: 2517
|
||||
[FieldOffset(Offset = "0xC0")]
|
||||
[Token(Token = "0x40009D5")]
|
||||
private Version version;
|
||||
|
||||
// Token: 0x040009D6 RID: 2518
|
||||
[FieldOffset(Offset = "0xC8")]
|
||||
[Token(Token = "0x40009D6")]
|
||||
private bool force_version;
|
||||
|
||||
// Token: 0x040009D7 RID: 2519
|
||||
[FieldOffset(Offset = "0xD0")]
|
||||
[Token(Token = "0x40009D7")]
|
||||
private Version actualVersion;
|
||||
|
||||
// Token: 0x040009D8 RID: 2520
|
||||
[FieldOffset(Offset = "0xD8")]
|
||||
[Token(Token = "0x40009D8")]
|
||||
private IWebProxy proxy;
|
||||
|
||||
// Token: 0x040009D9 RID: 2521
|
||||
[FieldOffset(Offset = "0xE0")]
|
||||
[Token(Token = "0x40009D9")]
|
||||
private bool sendChunked;
|
||||
|
||||
// Token: 0x040009DA RID: 2522
|
||||
[FieldOffset(Offset = "0xE8")]
|
||||
[Token(Token = "0x40009DA")]
|
||||
private ServicePoint servicePoint;
|
||||
|
||||
// Token: 0x040009DB RID: 2523
|
||||
[FieldOffset(Offset = "0xF0")]
|
||||
[Token(Token = "0x40009DB")]
|
||||
private int timeout;
|
||||
|
||||
// Token: 0x040009DC RID: 2524
|
||||
[FieldOffset(Offset = "0xF8")]
|
||||
[Token(Token = "0x40009DC")]
|
||||
private WebConnectionStream writeStream;
|
||||
|
||||
// Token: 0x040009DD RID: 2525
|
||||
[FieldOffset(Offset = "0x100")]
|
||||
[Token(Token = "0x40009DD")]
|
||||
private HttpWebResponse webResponse;
|
||||
|
||||
// Token: 0x040009DE RID: 2526
|
||||
[FieldOffset(Offset = "0x108")]
|
||||
[Token(Token = "0x40009DE")]
|
||||
private WebAsyncResult asyncWrite;
|
||||
|
||||
// Token: 0x040009DF RID: 2527
|
||||
[FieldOffset(Offset = "0x110")]
|
||||
[Token(Token = "0x40009DF")]
|
||||
private WebAsyncResult asyncRead;
|
||||
|
||||
// Token: 0x040009E0 RID: 2528
|
||||
[FieldOffset(Offset = "0x118")]
|
||||
[Token(Token = "0x40009E0")]
|
||||
private EventHandler abortHandler;
|
||||
|
||||
// Token: 0x040009E1 RID: 2529
|
||||
[FieldOffset(Offset = "0x120")]
|
||||
[Token(Token = "0x40009E1")]
|
||||
private int aborted;
|
||||
|
||||
// Token: 0x040009E2 RID: 2530
|
||||
[FieldOffset(Offset = "0x124")]
|
||||
[Token(Token = "0x40009E2")]
|
||||
private bool gotRequestStream;
|
||||
|
||||
// Token: 0x040009E3 RID: 2531
|
||||
[FieldOffset(Offset = "0x128")]
|
||||
[Token(Token = "0x40009E3")]
|
||||
private int redirects;
|
||||
|
||||
// Token: 0x040009E4 RID: 2532
|
||||
[FieldOffset(Offset = "0x12C")]
|
||||
[Token(Token = "0x40009E4")]
|
||||
private bool expectContinue;
|
||||
|
||||
// Token: 0x040009E5 RID: 2533
|
||||
[FieldOffset(Offset = "0x130")]
|
||||
[Token(Token = "0x40009E5")]
|
||||
private byte[] bodyBuffer;
|
||||
|
||||
// Token: 0x040009E6 RID: 2534
|
||||
[FieldOffset(Offset = "0x138")]
|
||||
[Token(Token = "0x40009E6")]
|
||||
private int bodyBufferLength;
|
||||
|
||||
// Token: 0x040009E7 RID: 2535
|
||||
[FieldOffset(Offset = "0x13C")]
|
||||
[Token(Token = "0x40009E7")]
|
||||
private bool getResponseCalled;
|
||||
|
||||
// Token: 0x040009E8 RID: 2536
|
||||
[FieldOffset(Offset = "0x140")]
|
||||
[Token(Token = "0x40009E8")]
|
||||
private Exception saved_exc;
|
||||
|
||||
// Token: 0x040009E9 RID: 2537
|
||||
[FieldOffset(Offset = "0x148")]
|
||||
[Token(Token = "0x40009E9")]
|
||||
private object locker;
|
||||
|
||||
// Token: 0x040009EA RID: 2538
|
||||
[FieldOffset(Offset = "0x150")]
|
||||
[Token(Token = "0x40009EA")]
|
||||
private bool finished_reading;
|
||||
|
||||
// Token: 0x040009EB RID: 2539
|
||||
[FieldOffset(Offset = "0x158")]
|
||||
[Token(Token = "0x40009EB")]
|
||||
internal WebConnection WebConnection;
|
||||
|
||||
// Token: 0x040009EC RID: 2540
|
||||
[FieldOffset(Offset = "0x160")]
|
||||
[Token(Token = "0x40009EC")]
|
||||
private DecompressionMethods auto_decomp;
|
||||
|
||||
// Token: 0x040009ED RID: 2541
|
||||
[Token(Token = "0x40009ED")]
|
||||
private static int defaultMaxResponseHeadersLength;
|
||||
|
||||
// Token: 0x040009EE RID: 2542
|
||||
[FieldOffset(Offset = "0x164")]
|
||||
[Token(Token = "0x40009EE")]
|
||||
private int readWriteTimeout;
|
||||
|
||||
// Token: 0x040009EF RID: 2543
|
||||
[FieldOffset(Offset = "0x168")]
|
||||
[Token(Token = "0x40009EF")]
|
||||
private MonoTlsProvider tlsProvider;
|
||||
|
||||
// Token: 0x040009F0 RID: 2544
|
||||
[FieldOffset(Offset = "0x170")]
|
||||
[Token(Token = "0x40009F0")]
|
||||
private MonoTlsSettings tlsSettings;
|
||||
|
||||
// Token: 0x040009F1 RID: 2545
|
||||
[FieldOffset(Offset = "0x178")]
|
||||
[Token(Token = "0x40009F1")]
|
||||
private ServerCertValidationCallback certValidationCallback;
|
||||
|
||||
// Token: 0x040009F2 RID: 2546
|
||||
[FieldOffset(Offset = "0x180")]
|
||||
[Token(Token = "0x40009F2")]
|
||||
private HttpWebRequest.AuthorizationState auth_state;
|
||||
|
||||
// Token: 0x040009F3 RID: 2547
|
||||
[FieldOffset(Offset = "0x190")]
|
||||
[Token(Token = "0x40009F3")]
|
||||
private HttpWebRequest.AuthorizationState proxy_auth_state;
|
||||
|
||||
// Token: 0x040009F4 RID: 2548
|
||||
[FieldOffset(Offset = "0x1A0")]
|
||||
[Token(Token = "0x40009F4")]
|
||||
private string host;
|
||||
|
||||
// Token: 0x040009F5 RID: 2549
|
||||
[FieldOffset(Offset = "0x1A8")]
|
||||
[Token(Token = "0x40009F5")]
|
||||
[NonSerialized]
|
||||
internal Action<Stream> ResendContentFactory;
|
||||
|
||||
// Token: 0x040009F7 RID: 2551
|
||||
[FieldOffset(Offset = "0x1B1")]
|
||||
[Token(Token = "0x40009F7")]
|
||||
private bool unsafe_auth_blah;
|
||||
|
||||
// Token: 0x040009F9 RID: 2553
|
||||
[FieldOffset(Offset = "0x1B8")]
|
||||
[Token(Token = "0x40009F9")]
|
||||
internal WebConnection StoredConnection;
|
||||
|
||||
// Token: 0x02000290 RID: 656
|
||||
[Token(Token = "0x2000290")]
|
||||
private enum NtlmAuthState
|
||||
{
|
||||
// Token: 0x040009FB RID: 2555
|
||||
[Token(Token = "0x40009FB")]
|
||||
None,
|
||||
// Token: 0x040009FC RID: 2556
|
||||
[Token(Token = "0x40009FC")]
|
||||
Challenge,
|
||||
// Token: 0x040009FD RID: 2557
|
||||
[Token(Token = "0x40009FD")]
|
||||
Response
|
||||
}
|
||||
|
||||
// Token: 0x02000291 RID: 657
|
||||
[Token(Token = "0x2000291")]
|
||||
private struct AuthorizationState
|
||||
{
|
||||
// Token: 0x17000364 RID: 868
|
||||
// (get) Token: 0x0600110F RID: 4367 RVA: 0x00008010 File Offset: 0x00006210
|
||||
[Token(Token = "0x17000364")]
|
||||
public bool IsCompleted
|
||||
{
|
||||
[Token(Token = "0x600110F")]
|
||||
[Address(RVA = "0x897E50", Offset = "0x896E50", VA = "0x180897E50")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000365 RID: 869
|
||||
// (get) Token: 0x06001110 RID: 4368 RVA: 0x00008028 File Offset: 0x00006228
|
||||
[Token(Token = "0x17000365")]
|
||||
public HttpWebRequest.NtlmAuthState NtlmAuthState
|
||||
{
|
||||
[Token(Token = "0x6001110")]
|
||||
[Address(RVA = "0x89A1B0", Offset = "0x8991B0", VA = "0x18089A1B0")]
|
||||
get
|
||||
{
|
||||
return HttpWebRequest.NtlmAuthState.None;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000366 RID: 870
|
||||
// (get) Token: 0x06001111 RID: 4369 RVA: 0x00008040 File Offset: 0x00006240
|
||||
[Token(Token = "0x17000366")]
|
||||
public bool IsNtlmAuthenticated
|
||||
{
|
||||
[Token(Token = "0x6001111")]
|
||||
[Address(RVA = "0xB245D0", Offset = "0xB235D0", VA = "0x180B245D0")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001112 RID: 4370 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001112")]
|
||||
[Address(RVA = "0xB245B0", Offset = "0xB235B0", VA = "0x180B245B0")]
|
||||
public AuthorizationState(HttpWebRequest request, bool isProxy)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001113 RID: 4371 RVA: 0x00008058 File Offset: 0x00006258
|
||||
[Token(Token = "0x6001113")]
|
||||
[Address(RVA = "0xB24230", Offset = "0xB23230", VA = "0x180B24230")]
|
||||
public bool CheckAuthorization(WebResponse response, HttpStatusCode code)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06001114 RID: 4372 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001114")]
|
||||
[Address(RVA = "0xB24490", Offset = "0xB23490", VA = "0x180B24490")]
|
||||
public void Reset()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001115 RID: 4373 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001115")]
|
||||
[Address(RVA = "0xB24500", Offset = "0xB23500", VA = "0x180B24500", Slot = "3")]
|
||||
public override string ToString()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x040009FE RID: 2558
|
||||
[FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x40009FE")]
|
||||
private readonly HttpWebRequest request;
|
||||
|
||||
// Token: 0x040009FF RID: 2559
|
||||
[FieldOffset(Offset = "0x8")]
|
||||
[Token(Token = "0x40009FF")]
|
||||
private readonly bool isProxy;
|
||||
|
||||
// Token: 0x04000A00 RID: 2560
|
||||
[FieldOffset(Offset = "0x9")]
|
||||
[Token(Token = "0x4000A00")]
|
||||
private bool isCompleted;
|
||||
|
||||
// Token: 0x04000A01 RID: 2561
|
||||
[FieldOffset(Offset = "0xC")]
|
||||
[Token(Token = "0x4000A01")]
|
||||
private HttpWebRequest.NtlmAuthState ntlm_auth_state;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,247 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides an HTTP-specific implementation of the <see cref="T:System.Net.WebResponse" /> class.</summary>
|
||||
// Token: 0x02000293 RID: 659
|
||||
[Token(Token = "0x2000293")]
|
||||
[Serializable]
|
||||
public class HttpWebResponse : WebResponse, ISerializable, IDisposable
|
||||
{
|
||||
// Token: 0x06001118 RID: 4376 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001118")]
|
||||
[Address(RVA = "0xB3B080", Offset = "0xB3A080", VA = "0x180B3B080")]
|
||||
internal HttpWebResponse(Uri uri, string method, WebConnectionData data, CookieContainer container)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.HttpWebResponse" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances.</summary>
|
||||
/// <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information required to serialize the new <see cref="T:System.Net.HttpWebRequest" />.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.HttpWebRequest" />.</param>
|
||||
// Token: 0x06001119 RID: 4377 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001119")]
|
||||
[Address(RVA = "0xB3AE10", Offset = "0xB39E10", VA = "0x180B3AE10")]
|
||||
[Obsolete]
|
||||
protected HttpWebResponse(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the headers that are associated with this response from the server.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains the header information returned with the response.</returns>
|
||||
/// <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
|
||||
// Token: 0x17000367 RID: 871
|
||||
// (get) Token: 0x0600111A RID: 4378 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000367")]
|
||||
public override WebHeaderCollection Headers
|
||||
{
|
||||
[Token(Token = "0x600111A")]
|
||||
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the URI of the Internet resource that responded to the request.</summary>
|
||||
/// <returns>The URI of the Internet resource that responded to the request.</returns>
|
||||
/// <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
|
||||
// Token: 0x17000368 RID: 872
|
||||
// (get) Token: 0x0600111B RID: 4379 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000368")]
|
||||
public override Uri ResponseUri
|
||||
{
|
||||
[Token(Token = "0x600111B")]
|
||||
[Address(RVA = "0xB3B2C0", Offset = "0xB3A2C0", VA = "0x180B3B2C0", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the status of the response.</summary>
|
||||
/// <returns>One of the <see cref="T:System.Net.HttpStatusCode" /> values.</returns>
|
||||
/// <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
|
||||
// Token: 0x17000369 RID: 873
|
||||
// (get) Token: 0x0600111C RID: 4380 RVA: 0x00008070 File Offset: 0x00006270
|
||||
[Token(Token = "0x17000369")]
|
||||
public virtual HttpStatusCode StatusCode
|
||||
{
|
||||
[Token(Token = "0x600111C")]
|
||||
[Address(RVA = "0x678D20", Offset = "0x677D20", VA = "0x180678D20", Slot = "14")]
|
||||
get
|
||||
{
|
||||
return (HttpStatusCode)0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the status description returned with the response.</summary>
|
||||
/// <returns>A string that describes the status of the response.</returns>
|
||||
/// <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
|
||||
// Token: 0x1700036A RID: 874
|
||||
// (get) Token: 0x0600111D RID: 4381 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700036A")]
|
||||
public virtual string StatusDescription
|
||||
{
|
||||
[Token(Token = "0x600111D")]
|
||||
[Address(RVA = "0xB3B2E0", Offset = "0xB3A2E0", VA = "0x180B3B2E0", Slot = "15")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600111E RID: 4382 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600111E")]
|
||||
[Address(RVA = "0xB3AD40", Offset = "0xB39D40", VA = "0x180B3AD40")]
|
||||
internal void ReadAll()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the stream that is used to read the body of the response from the server.</summary>
|
||||
/// <returns>A <see cref="T:System.IO.Stream" /> containing the body of the response.</returns>
|
||||
/// <exception cref="T:System.Net.ProtocolViolationException">There is no response stream.</exception>
|
||||
/// <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
|
||||
// Token: 0x0600111F RID: 4383 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600111F")]
|
||||
[Address(RVA = "0xB3ACA0", Offset = "0xB39CA0", VA = "0x180B3ACA0", Slot = "11")]
|
||||
public override Stream GetResponseStream()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Serializes this instance into the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</summary>
|
||||
/// <param name="serializationInfo">The object into which this <see cref="T:System.Net.HttpWebResponse" /> will be serialized.</param>
|
||||
/// <param name="streamingContext">The destination of the serialization.</param>
|
||||
// Token: 0x06001120 RID: 4384 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001120")]
|
||||
[Address(RVA = "0x779A50", Offset = "0x778A50", VA = "0x180779A50", Slot = "6")]
|
||||
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
|
||||
/// <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
|
||||
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
|
||||
// Token: 0x06001121 RID: 4385 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001121")]
|
||||
[Address(RVA = "0xB3AB90", Offset = "0xB39B90", VA = "0x180B3AB90", Slot = "8")]
|
||||
protected override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Closes the response stream.</summary>
|
||||
/// <exception cref="T:System.ObjectDisposedException">.NET Core only: This <see cref="T:System.Net.HttpWebResponse" /> object has been disposed.</exception>
|
||||
// Token: 0x06001122 RID: 4386 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001122")]
|
||||
[Address(RVA = "0xB3A9E0", Offset = "0xB399E0", VA = "0x180B3A9E0", Slot = "9")]
|
||||
public override void Close()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001123 RID: 4387 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001123")]
|
||||
[Address(RVA = "0x4AAA60", Offset = "0x4A9A60", VA = "0x1804AAA60", Slot = "7")]
|
||||
void IDisposable.Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.HttpWebResponse" />, and optionally disposes of the managed resources.</summary>
|
||||
/// <param name="disposing">
|
||||
/// <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to releases only unmanaged resources.</param>
|
||||
// Token: 0x06001124 RID: 4388 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001124")]
|
||||
[Address(RVA = "0xB3AA10", Offset = "0xB39A10", VA = "0x180B3AA10", Slot = "10")]
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001125 RID: 4389 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001125")]
|
||||
[Address(RVA = "0xB3A950", Offset = "0xB39950", VA = "0x180B3A950")]
|
||||
private void CheckDisposed()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06001126 RID: 4390 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001126")]
|
||||
[Address(RVA = "0xB3AA20", Offset = "0xB39A20", VA = "0x180B3AA20")]
|
||||
private void FillCookies()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.HttpWebResponse" /> class.</summary>
|
||||
// Token: 0x06001127 RID: 4391 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001127")]
|
||||
[Address(RVA = "0xB3ADE0", Offset = "0xB39DE0", VA = "0x180B3ADE0")]
|
||||
[Obsolete]
|
||||
[Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public HttpWebResponse()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000A04 RID: 2564
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000A04")]
|
||||
private Uri uri;
|
||||
|
||||
// Token: 0x04000A05 RID: 2565
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000A05")]
|
||||
private WebHeaderCollection webHeaders;
|
||||
|
||||
// Token: 0x04000A06 RID: 2566
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000A06")]
|
||||
private CookieCollection cookieCollection;
|
||||
|
||||
// Token: 0x04000A07 RID: 2567
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x4000A07")]
|
||||
private string method;
|
||||
|
||||
// Token: 0x04000A08 RID: 2568
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x4000A08")]
|
||||
private Version version;
|
||||
|
||||
// Token: 0x04000A09 RID: 2569
|
||||
[FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x4000A09")]
|
||||
private HttpStatusCode statusCode;
|
||||
|
||||
// Token: 0x04000A0A RID: 2570
|
||||
[FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x4000A0A")]
|
||||
private string statusDescription;
|
||||
|
||||
// Token: 0x04000A0B RID: 2571
|
||||
[FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x4000A0B")]
|
||||
private long contentLength;
|
||||
|
||||
// Token: 0x04000A0C RID: 2572
|
||||
[FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x4000A0C")]
|
||||
private string contentType;
|
||||
|
||||
// Token: 0x04000A0D RID: 2573
|
||||
[FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x4000A0D")]
|
||||
private CookieContainer cookie_container;
|
||||
|
||||
// Token: 0x04000A0E RID: 2574
|
||||
[FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x4000A0E")]
|
||||
private bool disposed;
|
||||
|
||||
// Token: 0x04000A0F RID: 2575
|
||||
[FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x4000A0F")]
|
||||
private Stream stream;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides the base authentication interface for Web client authentication modules.</summary>
|
||||
// Token: 0x02000224 RID: 548
|
||||
[Token(Token = "0x2000224")]
|
||||
public interface IAuthenticationModule
|
||||
{
|
||||
/// <summary>Returns an instance of the <see cref="T:System.Net.Authorization" /> class in response to an authentication challenge from a server.</summary>
|
||||
/// <param name="challenge">The authentication challenge sent by the server.</param>
|
||||
/// <param name="request">The <see cref="T:System.Net.WebRequest" /> instance associated with the challenge.</param>
|
||||
/// <param name="credentials">The credentials associated with the challenge.</param>
|
||||
/// <returns>An <see cref="T:System.Net.Authorization" /> instance containing the authorization message for the request, or <see langword="null" /> if the challenge cannot be handled.</returns>
|
||||
// Token: 0x06000DD4 RID: 3540
|
||||
[Token(Token = "0x6000DD4")]
|
||||
[Address(Slot = "0")]
|
||||
Authorization Authenticate(string challenge, WebRequest request, ICredentials credentials);
|
||||
|
||||
/// <summary>Returns an instance of the <see cref="T:System.Net.Authorization" /> class for an authentication request to a server.</summary>
|
||||
/// <param name="request">The <see cref="T:System.Net.WebRequest" /> instance associated with the authentication request.</param>
|
||||
/// <param name="credentials">The credentials associated with the authentication request.</param>
|
||||
/// <returns>An <see cref="T:System.Net.Authorization" /> instance containing the authorization message for the request.</returns>
|
||||
// Token: 0x06000DD5 RID: 3541
|
||||
[Token(Token = "0x6000DD5")]
|
||||
[Address(Slot = "1")]
|
||||
Authorization PreAuthenticate(WebRequest request, ICredentials credentials);
|
||||
|
||||
/// <summary>Gets the authentication type provided by this authentication module.</summary>
|
||||
/// <returns>A string indicating the authentication type provided by this authentication module.</returns>
|
||||
// Token: 0x1700028E RID: 654
|
||||
// (get) Token: 0x06000DD6 RID: 3542
|
||||
[Token(Token = "0x1700028E")]
|
||||
string AuthenticationType
|
||||
{
|
||||
[Token(Token = "0x6000DD6")]
|
||||
[Address(Slot = "2")]
|
||||
get;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Validates a server certificate.</summary>
|
||||
// Token: 0x02000225 RID: 549
|
||||
[Token(Token = "0x2000225")]
|
||||
public interface ICertificatePolicy
|
||||
{
|
||||
/// <summary>Validates a server certificate.</summary>
|
||||
/// <param name="srvPoint">The <see cref="T:System.Net.ServicePoint" /> that will use the certificate.</param>
|
||||
/// <param name="certificate">The certificate to validate.</param>
|
||||
/// <param name="request">The request that received the certificate.</param>
|
||||
/// <param name="certificateProblem">The problem that was encountered when using the certificate.</param>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the certificate should be honored; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x06000DD7 RID: 3543
|
||||
[Token(Token = "0x6000DD7")]
|
||||
[Address(Slot = "0")]
|
||||
bool CheckValidationResult(ServicePoint srvPoint, X509Certificate certificate, WebRequest request, int certificateProblem);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
// Token: 0x02000247 RID: 583
|
||||
[Token(Token = "0x2000247")]
|
||||
internal interface ICloseEx
|
||||
{
|
||||
// Token: 0x06000EA7 RID: 3751
|
||||
[Token(Token = "0x6000EA7")]
|
||||
[Address(Slot = "0")]
|
||||
void CloseEx(CloseExState closeState);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Defines the credential policy to be used for resource requests that are made using <see cref="T:System.Net.WebRequest" /> and its derived classes.</summary>
|
||||
// Token: 0x02000294 RID: 660
|
||||
[Token(Token = "0x2000294")]
|
||||
public interface ICredentialPolicy
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides the base authentication interface for retrieving credentials for Web client authentication.</summary>
|
||||
// Token: 0x02000226 RID: 550
|
||||
[Token(Token = "0x2000226")]
|
||||
public interface ICredentials
|
||||
{
|
||||
/// <summary>Returns a <see cref="T:System.Net.NetworkCredential" /> object that is associated with the specified URI, and authentication type.</summary>
|
||||
/// <param name="uri">The <see cref="T:System.Uri" /> that the client is providing authentication for.</param>
|
||||
/// <param name="authType">The type of authentication, as defined in the <see cref="P:System.Net.IAuthenticationModule.AuthenticationType" /> property.</param>
|
||||
/// <returns>The <see cref="T:System.Net.NetworkCredential" /> that is associated with the specified URI and authentication type, or, if no credentials are available, <see langword="null" />.</returns>
|
||||
// Token: 0x06000DD8 RID: 3544
|
||||
[Token(Token = "0x6000DD8")]
|
||||
[Address(Slot = "0")]
|
||||
NetworkCredential GetCredential(Uri uri, string authType);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides the interface for retrieving credentials for a host, port, and authentication type.</summary>
|
||||
// Token: 0x02000227 RID: 551
|
||||
[Token(Token = "0x2000227")]
|
||||
public interface ICredentialsByHost
|
||||
{
|
||||
/// <summary>Returns the credential for the specified host, port, and authentication protocol.</summary>
|
||||
/// <param name="host">The host computer that is authenticating the client.</param>
|
||||
/// <param name="port">The port on <paramref name="host" /> that the client will communicate with.</param>
|
||||
/// <param name="authenticationType">The authentication protocol.</param>
|
||||
/// <returns>A <see cref="T:System.Net.NetworkCredential" /> for the specified host, port, and authentication protocol, or <see langword="null" /> if there are no credentials available for the specified host, port, and authentication protocol.</returns>
|
||||
// Token: 0x06000DD9 RID: 3545
|
||||
[Token(Token = "0x6000DD9")]
|
||||
[Address(Slot = "0")]
|
||||
NetworkCredential GetCredential(string host, int port, string authenticationType);
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user