using System; using System.Net; using System.Net.Cache; using System.Threading.Tasks; using Cpp2IlInjected; namespace System.Xml { /// Resolves external XML resources named by a Uniform Resource Identifier (URI). // Token: 0x020000FB RID: 251 [Token(Token = "0x20000FB")] public class XmlUrlResolver : XmlResolver { // Token: 0x1700032C RID: 812 // (get) Token: 0x06000C28 RID: 3112 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700032C")] private static XmlDownloadManager DownloadManager { [Token(Token = "0x6000C28")] [Address(RVA = "0xACB860", Offset = "0xACA860", VA = "0x180ACB860")] get { return null; } } /// Initializes a new instance of the class. // Token: 0x06000C29 RID: 3113 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000C29")] [Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")] public XmlUrlResolver() { } /// Maps a URI to an object that contains the actual resource. /// The URI returned from . /// Currently not used. /// The type of object to return. The current implementation only returns objects. /// A stream object or if a type other than stream is specified. /// /// is neither nor a type. /// The specified URI is not an absolute URI. /// /// is . /// There is a runtime error (for example, an interrupted server connection). // Token: 0x06000C2A RID: 3114 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C2A")] [Address(RVA = "0xACB6C0", Offset = "0xACA6C0", VA = "0x180ACB6C0", Slot = "4")] public override object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn) { return null; } /// Resolves the absolute URI from the base and relative URIs. /// The base URI used to resolve the relative URI. /// The URI to resolve. The URI can be absolute or relative. If absolute, this value effectively replaces the value. If relative, it combines with the to make an absolute URI. /// The absolute URI, or if the relative URI cannot be resolved. /// /// is or is . // Token: 0x06000C2B RID: 3115 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C2B")] [Address(RVA = "0xACB850", Offset = "0xACA850", VA = "0x180ACB850", Slot = "5")] public override Uri ResolveUri(Uri baseUri, string relativeUri) { return null; } /// Asynchronously maps a URI to an object that contains the actual resource. /// The URI returned from . /// Currently not used. /// The type of object to return. The current implementation only returns objects. /// A stream object or if a type other than stream is specified. // Token: 0x06000C2C RID: 3116 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000C2C")] [Address(RVA = "0xACB5B0", Offset = "0xACA5B0", VA = "0x180ACB5B0", Slot = "7")] public override Task GetEntityAsync(Uri absoluteUri, string role, Type ofObjectToReturn) { return null; } // Token: 0x04000654 RID: 1620 [Token(Token = "0x4000654")] private static object s_DownloadManager; // Token: 0x04000655 RID: 1621 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000655")] private ICredentials _credentials; // Token: 0x04000656 RID: 1622 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000656")] private IWebProxy _proxy; // Token: 0x04000657 RID: 1623 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000657")] private RequestCachePolicy _cachePolicy; } }