winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

StreamType.cs (1129B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="StreamType.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.WinGet.Common.Command
      8 {
      9     /// <summary>
     10     /// The write stream type of the cmdlet.
     11     /// </summary>
     12     public enum StreamType
     13     {
     14         /// <summary>
     15         /// Debug.
     16         /// </summary>
     17         Debug,
     18 
     19         /// <summary>
     20         /// Verbose.
     21         /// </summary>
     22         Verbose,
     23 
     24         /// <summary>
     25         /// Warning.
     26         /// </summary>
     27         Warning,
     28 
     29         /// <summary>
     30         /// Error.
     31         /// </summary>
     32         Error,
     33 
     34         /// <summary>
     35         /// Progress.
     36         /// </summary>
     37         Progress,
     38 
     39         /// <summary>
     40         /// Object.
     41         /// </summary>
     42         Object,
     43 
     44         /// <summary>
     45         /// Information.
     46         /// </summary>
     47         Information,
     48     }
     49 }