Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextWriterTraceListener.xml « System.Diagnostics « en « xml « apidocs « docs « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9645cf9117f151e1b46217ab7fcfd015dad4b358 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE monodoc SYSTEM "http://www.go-mono.org/monodoc.dtd">
<monodoc language="en">
    <class name="System.Diagnostics.TextWriterTraceListener" assembly="System">
        <summary>
          Directs tracing or debugging output to a 
          <see cref="System.IO.TextWriter">TextWriter</see> or to a 
          <see cref="System.IO.Stream">Stream</see>,
          such as <see cref="System.Console.Out">Console.Out</see> or
          <see cref="System.IO.FileStream">FileStream</see>.
        </summary>
        <remarks>TODO</remarks>
        <constructor name="TextWriterTraceListener">
            <summary>
              Initializes a new instance of the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>
              class with 
              <see cref="System.IO.TextWriter">TextWriter</see> 
              as the output recipient.
            </summary>
            <remarks>TODO</remarks>
        </constructor>
        <constructor name="TextWriterTraceListener(System.IO.Stream)">
            <summary>
              Initializes a new instance of the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see> 
              class, using the stream as the output
              recipient of the debugging and tracing output.
            </summary>
            <remarks>TODO</remarks>
            <param name="stream">
              A <see cref="System.IO.Stream">Stream</see> that represents the 
              stream the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see> 
              writes to.
            </param>
            <exception cref="System.ArgumentNullException">
              The stream is a null reference.
            </exception>
        </constructor>
        <constructor name="TextWriterTraceListener(System.String)">
            <summary>
              Initializes a new instance of the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see> 
              class, using the file as the recipient
              of the debugging and tracing output.
            </summary>
            <remarks>TODO</remarks>
            <param name="fileName">
              The name of the file the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>
              writes to.
            </param>
            <exception cref="System.ArgumentNullException">
              The fileName is null.
            </exception>
        </constructor>
        <constructor name="TextWriterTraceListener(System.IO.TextWriter)">
            <summary>
              Initializes a new instance of the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see> 
              class using the specified writer as the
              recipient of the tracing or debugging output.
            </summary>
            <remarks>TODO</remarks>
            <param name="writer">
              A <see cref="System.IO.TextWriter">TextWriter</see> that receives 
              output from the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>.
            </param>
            <exception cref="System.ArgumentNullException">
              The writer is a null reference
            </exception>
        </constructor>
        <constructor name="TextWriterTraceListener(System.IO.Stream, System.String)">
            <summary>
              Initializes a new instance of the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>
              class with the specified name, using the
              stream as the recipient of the tracing or debugging output.
            </summary>
            <remarks>TODO</remarks>
            <param name="stream">
              A <see cref="System.IO.Stream">Stream</see> that represents 
              the stream the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>
              writes to.
            </param>
            <param name="name">The name of the new instance.</param>
            <exception cref="System.ArgumentNullException">
              The stream is a null reference
            </exception>
        </constructor>
        <constructor name="TextWriterTraceListener(System.String, System.String)">
            <summary>
              Initializes a new instance of the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>
              class with the specified name, using the
              file as the recipient of the tracing or debugging output.
            </summary>
            <remarks>TODO</remarks>
            <param name="fileName">
              The name of the file the <see cref="TextWriterTraceListener">
              TextWriterTraceListener</see> writes to.
            </param>
            <param name="name">The name of the new instance.</param>
            <exception cref="System.ArgumentNullException">
              The file is a null reference.
            </exception>
        </constructor>
        <constructor name="TextWriterTraceListener(System.IO.TextWriter, System.String)">
            <summary>
              Initializes a new instance of the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>
              class with the specified name, using
              the specified writer as the recipient of the tracing or 
              debugging output.
            </summary>
            <remarks>TODO</remarks>
            <param name="writer">
              A <see cref="System.IO.TextWriter">TextWriter</see> that receives 
              the output from the 
              <see cref="TextWriterTraceListener">TextWriterTraceListener</see>.
            </param>
            <param name="name">The name of the new instance.</param>
            <exception cref="System.ArgumentNullException">
              The writer is a null reference.
            </exception>
        </constructor>
        <property name="Writer">
            <summary>
              Gets or sets the writer that receives the debugging or 
              tracing output.
            </summary>
            <remarks>TODO</remarks>
            <value>
              A <see cref="System.IO.TextWriter">TextWriter</see> that 
              represents the writer that receives the tracing or 
              debugging output.
            </value>
        </property>
        <method name="WriteLine(System.String)">
            <summary>
              Writes a message to this instance's 
              <see cref="System.IO.Writer">Writer</see>
              followed by a line terminator.
            </summary>
            <remarks>TODO</remarks>
            <param name="message">A message to write.</param>
            <returns>TODO</returns>
        </method>
        <method name="Write(System.String)">
            <summary>
              Writes a message to this instance's 
              <see cref="System.IO.Writer">Writer</see>.
            </summary>
            <remarks>TODO</remarks>
            <param name="message">A message to write.</param>
            <returns>TODO</returns>
        </method>
        <method name="Flush">
            <summary>
              Flushes the output buffer for the 
              <see cref="System.IO.Writer">Writer</see>.
            </summary>
            <remarks>TODO</remarks>
            <returns>TODO</returns>
        </method>
        <method name="Close">
            <summary>
              Closes the <see cref="System.IO.Writer">Writer</see> so that 
              it no longer receives tracing or debugging output.
            </summary>
            <remarks>TODO</remarks>
            <returns>TODO</returns>
        </method>
    </class>
</monodoc>