forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCimWriteMessage.cs
More file actions
85 lines (72 loc) · 2.13 KB
/
Copy pathCimWriteMessage.cs
File metadata and controls
85 lines (72 loc) · 2.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*============================================================================
* Copyright (C) Microsoft Corporation, All rights reserved.
*============================================================================
*/
#region Using directives
using System;
using Microsoft.Management.Infrastructure.Options;
#endregion
namespace Microsoft.Management.Infrastructure.CimCmdlets
{
/// <summary>
/// <para>
/// Write message to message channel
/// </para>
/// </summary>
internal sealed class CimWriteMessage : CimBaseAction
{
#region members
/// <summary>
/// channel id
/// </summary>
private UInt32 channel;
/// <summary>
/// message to write to the channel
/// </summary>
private string message;
#endregion
#region Properties
internal UInt32 Channel
{
get { return channel; }
}
internal string Message
{
get { return message; }
}
#endregion
/// <summary>
/// Constructor method.
/// </summary>
public CimWriteMessage(UInt32 channel,
string message)
{
this.channel = channel;
this.message = message;
}
/// <summary>
/// <para>
/// Write message to the target channel
/// </para>
/// </summary>
/// <param name="cmdlet"></param>
public override void Execute(CmdletOperationBase cmdlet)
{
ValidationHelper.ValidateNoNullArgument(cmdlet, "cmdlet");
switch ((CimWriteMessageChannel)channel)
{
case CimWriteMessageChannel.Verbose:
cmdlet.WriteVerbose(message);
break;
case CimWriteMessageChannel.Warning:
cmdlet.WriteWarning(message);
break;
case CimWriteMessageChannel.Debug:
cmdlet.WriteDebug(message);
break;
default:
break;
}
}
}//End Class
}//End namespace