-
Notifications
You must be signed in to change notification settings - Fork 19
/
IHostIOSubscriber.cs
44 lines (35 loc) · 1.53 KB
/
IHostIOSubscriber.cs
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
// ReSharper disable UnusedParameter.Global
// ReSharper disable UnusedMember.Global
namespace PSLogging
{
using System.Collections.Generic;
using System.Management.Automation;
using System.Management.Automation.Host;
/// <summary>
/// The Logger interface.
/// </summary>
public interface IHostIOSubscriber
{
#region Public Methods and Operators
#region From MWalker Solution (unused by this module)
// These methods intercept input, which is not really useful for the type of logging I intend this module to perform.
// The script that called these methods will already have access to the results, and the script author can choose
// to display it or not (at which point it will be caught by the logging module).
//
// WriteProgress is also included in this unused category, because this doesn't seem to make much sense in a log file.
void ChoicePrompt(ChoiceDescription choice);
void CredentialPrompt(PSCredential credential);
void Prompt(Dictionary<string, PSObject> returnValue);
void ReadFromHost(string inputText);
void WriteProgress(long sourceId, ProgressRecord record);
#endregion
void WriteDebug(string message);
void WriteError(string message);
void WriteOutput(string message);
void WriteVerbose(string message);
void WriteWarning(string message);
#endregion
}
}
// ReSharper restore UnusedMember.Global
// ReSharper restore UnusedParameter.Global