-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathStreamType.cs
More file actions
49 lines (42 loc) · 1.1 KB
/
StreamType.cs
File metadata and controls
49 lines (42 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// -----------------------------------------------------------------------------
// <copyright file="StreamType.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
// </copyright>
// -----------------------------------------------------------------------------
namespace Microsoft.WinGet.Common.Command
{
/// <summary>
/// The write stream type of the cmdlet.
/// </summary>
public enum StreamType
{
/// <summary>
/// Debug.
/// </summary>
Debug,
/// <summary>
/// Verbose.
/// </summary>
Verbose,
/// <summary>
/// Warning.
/// </summary>
Warning,
/// <summary>
/// Error.
/// </summary>
Error,
/// <summary>
/// Progress.
/// </summary>
Progress,
/// <summary>
/// Object.
/// </summary>
Object,
/// <summary>
/// Information.
/// </summary>
Information,
}
}