File: System\Net\Mime\MimeMultiPartType.cs | Web Access |
Project: src\src\libraries\System.Net.Mail\src\System.Net.Mail.csproj (System.Net.Mail) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace System.Net.Mime { internal enum MimeMultiPartType { Mixed = 0, Alternative = 1, Parallel = 2, Related = 3, Unknown = -1 } } |