a
This commit is contained in:
@@ -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: 0x020003AE RID: 942
|
||||
[Token(Token = "0x20003AE")]
|
||||
public sealed class WebRequestModuleElement : ConfigurationElement
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> class.</summary>
|
||||
// Token: 0x060018F7 RID: 6391 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018F7")]
|
||||
[Address(RVA = "0x29EB320", Offset = "0x29EA120", VA = "0x1829EB320")]
|
||||
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: 0x060018F8 RID: 6392 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018F8")]
|
||||
[Address(RVA = "0x29EB380", Offset = "0x29EA180", VA = "0x1829EB380")]
|
||||
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: 0x060018F9 RID: 6393 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60018F9")]
|
||||
[Address(RVA = "0x29EB350", Offset = "0x29EA150", VA = "0x1829EB350")]
|
||||
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: 0x17000593 RID: 1427
|
||||
// (get) Token: 0x060018FA RID: 6394 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060018FB RID: 6395 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000593")]
|
||||
public string Prefix
|
||||
{
|
||||
[Token(Token = "0x60018FA")]
|
||||
[Address(RVA = "0x29EB3B0", Offset = "0x29EA1B0", VA = "0x1829EB3B0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60018FB")]
|
||||
[Address(RVA = "0x29EB440", Offset = "0x29EA240", VA = "0x1829EB440")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000594 RID: 1428
|
||||
// (get) Token: 0x060018FC RID: 6396 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000594")]
|
||||
protected override ConfigurationPropertyCollection Properties
|
||||
{
|
||||
[Token(Token = "0x60018FC")]
|
||||
[Address(RVA = "0x29EB3E0", Offset = "0x29EA1E0", VA = "0x1829EB3E0", 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: 0x17000595 RID: 1429
|
||||
// (get) Token: 0x060018FD RID: 6397 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060018FE RID: 6398 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000595")]
|
||||
public Type Type
|
||||
{
|
||||
[Token(Token = "0x60018FD")]
|
||||
[Address(RVA = "0x29EB410", Offset = "0x29EA210", VA = "0x1829EB410")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60018FE")]
|
||||
[Address(RVA = "0x29EB470", Offset = "0x29EA270", VA = "0x1829EB470")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user