using System; using System.IO; using System.Net.Mime; using System.Text; using Cpp2IlInjected; namespace System.Net.Mail { /// Represents the format to view an email message. // Token: 0x020002B2 RID: 690 [Token(Token = "0x20002B2")] public class AlternateView : AttachmentBase { /// Initializes a new instance of with the specified and . /// A stream that contains the content for this attachment. /// The type of the content. /// /// is . /// /// is not a valid value. // Token: 0x06001228 RID: 4648 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001228")] [Address(RVA = "0x2225D20", Offset = "0x2224B20", VA = "0x182225D20")] public AlternateView(Stream contentStream, ContentType contentType) { } /// Gets the set of embedded resources referred to by this attachment. /// A object that stores the collection of linked resources to be sent as part of an email message. // Token: 0x170003AF RID: 943 // (get) Token: 0x06001229 RID: 4649 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170003AF")] public LinkedResourceCollection LinkedResources { [Token(Token = "0x6001229")] [Address(RVA = "0x3FA180", Offset = "0x3F8F80", VA = "0x1803FA180")] get { return null; } } /// Creates an of an email message using the content specified in a , the specified text encoding, and MIME media type of the content. /// A that contains the content for this attachment. /// An . This value can be /// The MIME media type of the content. /// An object that represents an alternate view of an email message. /// /// is null. // Token: 0x0600122A RID: 4650 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600122A")] [Address(RVA = "0x2225890", Offset = "0x2224690", VA = "0x182225890")] public static AlternateView CreateAlternateViewFromString(string content, Encoding contentEncoding, string mediaType) { return null; } /// Releases the unmanaged resources used by the and optionally releases the managed resources. /// /// to release both managed and unmanaged resources; to release only unmanaged resources. // Token: 0x0600122B RID: 4651 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600122B")] [Address(RVA = "0x2225B60", Offset = "0x2224960", VA = "0x182225B60", Slot = "5")] protected override void Dispose(bool disposing) { } // Token: 0x04000ACE RID: 2766 [FieldOffset(Offset = "0x30")] [Token(Token = "0x4000ACE")] private LinkedResourceCollection linkedResources; } }