using System; using Cpp2IlInjected; namespace System.Net { /// Contains an authentication message for an Internet server. // Token: 0x0200021F RID: 543 [Token(Token = "0x200021F")] public class Authorization { /// Creates a new instance of the class with the specified authorization message. /// The encrypted authorization message expected by the server. // Token: 0x06000DDC RID: 3548 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000DDC")] [Address(RVA = "0x29D6C90", Offset = "0x29D5A90", VA = "0x1829D6C90")] public Authorization(string token) { } /// Creates a new instance of the class with the specified authorization message and completion status. /// The encrypted authorization message expected by the server. /// The completion status of the authorization attempt. if the authorization attempt is complete; otherwise, . // Token: 0x06000DDD RID: 3549 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000DDD")] [Address(RVA = "0x29D6D00", Offset = "0x29D5B00", VA = "0x1829D6D00")] public Authorization(string token, bool finished) { } /// Gets the message returned to the server in response to an authentication challenge. /// The message that will be returned to the server in response to an authentication challenge. // Token: 0x1700028D RID: 653 // (get) Token: 0x06000DDE RID: 3550 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700028D")] public string Message { [Token(Token = "0x6000DDE")] [Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")] get { return null; } } /// Gets the completion status of the authorization. /// /// if the authentication process is complete; otherwise, . // Token: 0x1700028E RID: 654 // (get) Token: 0x06000DDF RID: 3551 RVA: 0x00007020 File Offset: 0x00005220 [Token(Token = "0x1700028E")] public bool Complete { [Token(Token = "0x6000DDF")] [Address(RVA = "0x42C2C0", Offset = "0x42B0C0", VA = "0x18042C2C0")] get { return default(bool); } } // Token: 0x0400078E RID: 1934 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400078E")] private string m_Message; // Token: 0x0400078F RID: 1935 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400078F")] private bool m_Complete; // Token: 0x04000790 RID: 1936 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000790")] internal string ModuleAuthenticationType; } }