Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

130 lines
4.7 KiB
C#

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: 0x020003A1 RID: 929
[Token(Token = "0x20003A1")]
public sealed class SmtpSection : ConfigurationSection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.SmtpSection" /> class.</summary>
// Token: 0x0600187A RID: 6266 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600187A")]
[Address(RVA = "0x29EAAC0", Offset = "0x29E98C0", VA = "0x1829EAAC0")]
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: 0x17000555 RID: 1365
// (get) Token: 0x0600187B RID: 6267 RVA: 0x0000A980 File Offset: 0x00008B80
// (set) Token: 0x0600187C RID: 6268 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000555")]
public SmtpDeliveryFormat DeliveryFormat
{
[Token(Token = "0x600187B")]
[Address(RVA = "0x29EAAF0", Offset = "0x29E98F0", VA = "0x1829EAAF0")]
get
{
return SmtpDeliveryFormat.SevenBit;
}
[Token(Token = "0x600187C")]
[Address(RVA = "0x29EAC10", Offset = "0x29E9A10", VA = "0x1829EAC10")]
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: 0x17000556 RID: 1366
// (get) Token: 0x0600187D RID: 6269 RVA: 0x0000A998 File Offset: 0x00008B98
// (set) Token: 0x0600187E RID: 6270 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000556")]
public SmtpDeliveryMethod DeliveryMethod
{
[Token(Token = "0x600187D")]
[Address(RVA = "0x29EAB20", Offset = "0x29E9920", VA = "0x1829EAB20")]
get
{
return SmtpDeliveryMethod.Network;
}
[Token(Token = "0x600187E")]
[Address(RVA = "0x29EAC40", Offset = "0x29E9A40", VA = "0x1829EAC40")]
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: 0x17000557 RID: 1367
// (get) Token: 0x0600187F RID: 6271 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06001880 RID: 6272 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000557")]
public string From
{
[Token(Token = "0x600187F")]
[Address(RVA = "0x29EAB50", Offset = "0x29E9950", VA = "0x1829EAB50")]
get
{
return null;
}
[Token(Token = "0x6001880")]
[Address(RVA = "0x29EAC70", Offset = "0x29E9A70", VA = "0x1829EAC70")]
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: 0x17000558 RID: 1368
// (get) Token: 0x06001881 RID: 6273 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000558")]
public SmtpNetworkElement Network
{
[Token(Token = "0x6001881")]
[Address(RVA = "0x29EAB80", Offset = "0x29E9980", VA = "0x1829EAB80")]
get
{
return null;
}
}
// Token: 0x17000559 RID: 1369
// (get) Token: 0x06001882 RID: 6274 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000559")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x6001882")]
[Address(RVA = "0x29EABB0", Offset = "0x29E99B0", VA = "0x1829EABB0", 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: 0x1700055A RID: 1370
// (get) Token: 0x06001883 RID: 6275 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700055A")]
public SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory
{
[Token(Token = "0x6001883")]
[Address(RVA = "0x29EABE0", Offset = "0x29E99E0", VA = "0x1829EABE0")]
get
{
return null;
}
}
}
}