Class DebugTraceWriter
Implements
Inherited Members
Namespace: GitCredentialManager
Assembly: Algenta.Colectica.Repository.Client.dll
Syntax
public class DebugTraceWriter : TextWriter, IDisposable
Properties
Encoding
When overridden in a derived class, returns the character encoding in which the output is written.
Declaration
public override Encoding Encoding { get; }
Property Value
Type | Description |
---|---|
Encoding | The character encoding in which the output is written. |
Overrides
Methods
Write(char)
Writes a character to the text string or stream.
Declaration
public override void Write(char value)
Parameters
Type | Name | Description |
---|---|---|
char | value | The character to write to the text stream. |
Overrides
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The TextWriter is closed. |
IOException | An I/O error occurs. |
Write(string)
Writes a string to the text string or stream.
Declaration
public override void Write(string value)
Parameters
Type | Name | Description |
---|---|---|
string | value | The string to write. |
Overrides
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The TextWriter is closed. |
IOException | An I/O error occurs. |
WriteLine(string)
Writes a string followed by a line terminator to the text string or stream.
Declaration
public override void WriteLine(string value)
Parameters
Type | Name | Description |
---|---|---|
string | value | The string to write. If |
Overrides
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The TextWriter is closed. |
IOException | An I/O error occurs. |