File: System\Net\Mime\DispositionTypeNames.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. namespace System.Net.Mime { public static class DispositionTypeNames { public const string Inline = "inline"; public const string Attachment = "attachment"; } } |