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: 0x02000083 RID: 131 [Token(Token = "0x2000083")] public class XmlUrlResolver : XmlResolver { // Token: 0x170001BC RID: 444 // (get) Token: 0x06000552 RID: 1362 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001BC")] private static XmlDownloadManager DownloadManager { [Token(Token = "0x6000552")] [Address(RVA = "0x722CD0", Offset = "0x721AD0", VA = "0x180722CD0")] get { return null; } } /// Initializes a new instance of the class. // Token: 0x06000553 RID: 1363 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000553")] [Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")] 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: 0x06000554 RID: 1364 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000554")] [Address(RVA = "0x722B30", Offset = "0x721930", VA = "0x180722B30", 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: 0x06000555 RID: 1365 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000555")] [Address(RVA = "0x722CC0", Offset = "0x721AC0", VA = "0x180722CC0", 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: 0x06000556 RID: 1366 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000556")] [Address(RVA = "0x722A20", Offset = "0x721820", VA = "0x180722A20", Slot = "7")] public override Task GetEntityAsync(Uri absoluteUri, string role, Type ofObjectToReturn) { return null; } // Token: 0x04000286 RID: 646 [Token(Token = "0x4000286")] private static object s_DownloadManager; // Token: 0x04000287 RID: 647 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000287")] private ICredentials _credentials; // Token: 0x04000288 RID: 648 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000288")] private IWebProxy _proxy; // Token: 0x04000289 RID: 649 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000289")] private RequestCachePolicy _cachePolicy; } }