ConverterStream Members
The ConverterStream class is a stream-based converter that can be configured for reading or writing.
The following tables list the members exposed by the ConverterStream type.
Public Constructors
Name | Description | |
---|---|---|
ConverterStream | Overloaded. The ConverterStream constructors create new ConverterStream objects. |
Top
Public Properties
Name | Description | |
---|---|---|
CanRead | Overridden. The CanRead property indicates whether the current stream supports reading. | |
CanSeek | Overridden. The CanSeek property returns false to indicate that the ConverterStream object does not support seeks. | |
CanTimeout | (inherited from Stream ) | |
CanWrite | Overridden. The CanWrite property indicates whether this ConverterStream can be written to. | |
Length | Overridden. The Length property throws a NotSupportedException. | |
Position | Overridden. The Position property throws a NotSupportedException. The ConverterStream class does not support seeks. | |
ReadTimeout | (inherited from Stream ) | |
WriteTimeout | (inherited from Stream ) |
Top
Public Methods
(see also Protected Methods )
Name | Description | |
---|---|---|
BeginRead | (inherited from Stream ) | |
BeginWrite | (inherited from Stream ) | |
Close | Overridden. The Close method closes the ConverterStream. | |
CreateObjRef | (inherited from MarshalByRefObject ) | |
Dispose | Overloaded. | |
EndRead | (inherited from Stream ) | |
EndWrite | (inherited from Stream ) | |
Equals | Overloaded. (inherited from Object ) | |
Flush | Overridden. The Flush method clears all buffers for this ConverterStream and causes any buffered data to be written to the destination TextWriter that it owns. | |
GetHashCode | (inherited from Object ) | |
GetLifetimeService | (inherited from MarshalByRefObject ) | |
GetType | (inherited from Object ) | |
InitializeLifetimeService | (inherited from MarshalByRefObject ) | |
Read | Overridden. The Read method reads and converts count bytes from the input stream and stores them in buffer, starting at offset. | |
ReadByte | (inherited from Stream ) | |
ReferenceEquals | (inherited from Object ) | |
Seek | Overridden. The Seek method throws a NotSupportedException. The ConverterStream object does not support seeks. | |
SetLength | Overridden. The SetLength method throws a NotSupportedException. | |
Synchronized | (inherited from Stream ) | |
ToString | (inherited from Object ) | |
Write | Overridden. The Write method converts and writes count bytes from buffer, starting at offset, into the destination TextWriter that it owns. | |
WriteByte | (inherited from Stream ) |
Top
Protected Methods
Name | Description | |
---|---|---|
CreateWaitHandle | Obsolete. (inherited from Stream ) | |
Dispose | Overloaded. Overridden. Releases the resources used by the ConverterStream. | |
Finalize | (inherited from Object ) | |
MemberwiseClone | Overloaded. (inherited from MarshalByRefObject ) |
Top