-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDebug.cs
More file actions
53 lines (46 loc) · 1.75 KB
/
Debug.cs
File metadata and controls
53 lines (46 loc) · 1.75 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
using System;
using System.Diagnostics;
using System.Net.FtpClient;
namespace Examples {
/// <summary>
/// Example for logging server transactions for use in debugging problems. If DEBUG
/// is defined this information is logged via System.Diagnostics.Debug.Write() as well
/// so you'll the same information in your Visual Studio Output window
/// </summary>
public static class DebugExample {
/// <summary>
/// Log to a console window
/// </summary>
static void LogToConsole() {
FtpTrace.AddListener(new ConsoleTraceListener());
// now use System.Net.FtpCLient as usual and the server transactions
// will be written to the Console window.
}
/// <summary>
/// Log to a text file
/// </summary>
static void LogToFile() {
FtpTrace.AddListener(new TextWriterTraceListener("log_file.txt"));
// now use System.Net.FtpCLient as usual and the server transactions
// will be written to the specified log file.
}
/// <summary>
/// Custom trace listener class that can log the transaction
/// however you want.
/// </summary>
class CustomTraceListener : TraceListener {
public override void Write(string message) {
Console.Write(message);
}
public override void WriteLine(string message) {
Console.WriteLine(message);
}
}
/// <summary>
/// Log to a custom TraceListener
/// </summary>
static void LogToCustomListener() {
FtpTrace.AddListener(new CustomTraceListener());
}
}
}