summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.xml')
-rwxr-xr-x.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.xml2045
1 files changed, 2045 insertions, 0 deletions
diff --git a/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.xml b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.xml
new file mode 100755
index 0000000000..bbb59cfc28
--- /dev/null
+++ b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.xml
@@ -0,0 +1,2045 @@
+<?xml version="1.0" encoding="utf-8"?><span>
+<doc>
+ <assembly>
+ <name>System.IO</name>
+ </assembly>
+ <members>
+ <member name="T:System.IO.BinaryReader">
+ <summary>Reads primitive data types as binary values in a specific encoding.</summary>
+ </member>
+ <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryReader"></see> class based on the specified stream and using UTF-8 encoding.</summary>
+ <param name="input">The input stream.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading, is null, or is already closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryReader"></see> class based on the specified stream and character encoding.</summary>
+ <param name="input">The input stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading, is null, or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="encoding">encoding</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryReader"></see> class based on the specified stream and character encoding, and optionally leaves the stream open.</summary>
+ <param name="input">The input stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="leaveOpen">true to leave the stream open after the <see cref="T:System.IO.BinaryReader"></see> object is disposed; otherwise, false.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading, is null, or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="encoding">encoding</paramref> or <paramref name="input">input</paramref> is null.</exception>
+ </member>
+ <member name="P:System.IO.BinaryReader.BaseStream">
+ <summary>Exposes access to the underlying stream of the <see cref="T:System.IO.BinaryReader"></see>.</summary>
+ <returns>The underlying stream associated with the BinaryReader.</returns>
+ </member>
+ <member name="M:System.IO.BinaryReader.Dispose">
+ <summary>Releases all resources used by the current instance of the <see cref="T:System.IO.BinaryReader"></see> class.</summary>
+ </member>
+ <member name="M:System.IO.BinaryReader.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryReader"></see> class and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.BinaryReader.FillBuffer(System.Int32)">
+ <summary>Fills the internal buffer with the specified number of bytes read from the stream.</summary>
+ <param name="numBytes">The number of bytes to be read.</param>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached before <paramref name="numBytes">numBytes</paramref> could be read.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">Requested <paramref name="numBytes">numBytes</paramref> is larger than the internal buffer size.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.PeekChar">
+ <summary>Returns the next available character and does not advance the byte or character position.</summary>
+ <returns>The next available character, or -1 if no more characters are available or the stream does not support seeking.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ArgumentException">The current character cannot be decoded into the internal character buffer by using the <see cref="T:System.Text.Encoding"></see> selected for the stream.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read">
+ <summary>Reads characters from the underlying stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream.</summary>
+ <returns>The next character from the input stream, or -1 if no characters are currently available.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the specified number of bytes from the stream, starting from a specified point in the byte array.</summary>
+ <param name="buffer">The buffer to read data into.</param>
+ <param name="index">The starting point in the buffer at which to begin reading into the buffer.</param>
+ <param name="count">The number of bytes to read.</param>
+ <returns>The number of bytes read into <paramref name="buffer">buffer</paramref>. This might be less than the number of bytes requested if that many bytes are not available, or it might be zero if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>. -or- The number of decoded characters to read is greater than <paramref name="count">count</paramref>. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads the specified number of characters from the stream, starting from a specified point in the character array.</summary>
+ <param name="buffer">The buffer to read data into.</param>
+ <param name="index">The starting point in the buffer at which to begin reading into the buffer.</param>
+ <param name="count">The number of characters to read.</param>
+ <returns>The total number of characters read into the buffer. This might be less than the number of characters requested if that many characters are not currently available, or it might be zero if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>. -or- The number of decoded characters to read is greater than <paramref name="count">count</paramref>. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read7BitEncodedInt">
+ <summary>Reads in a 32-bit integer in compressed format.</summary>
+ <returns>A 32-bit integer in compressed format.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">The stream is corrupted.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadBoolean">
+ <summary>Reads a Boolean value from the current stream and advances the current position of the stream by one byte.</summary>
+ <returns>true if the byte is nonzero; otherwise, false.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadByte">
+ <summary>Reads the next byte from the current stream and advances the current position of the stream by one byte.</summary>
+ <returns>The next byte read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadBytes(System.Int32)">
+ <summary>Reads the specified number of bytes from the current stream into a byte array and advances the current position by that number of bytes.</summary>
+ <param name="count">The number of bytes to read. This value must be 0 or a non-negative number or an exception will occur.</param>
+ <returns>A byte array containing data read from the underlying stream. This might be less than the number of bytes requested if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The number of decoded characters to read is greater than <paramref name="count">count</paramref>. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="count">count</paramref> is negative.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadChar">
+ <summary>Reads the next character from the current stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream.</summary>
+ <returns>A character read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ArgumentException">A surrogate character was read.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadChars(System.Int32)">
+ <summary>Reads the specified number of characters from the current stream, returns the data in a character array, and advances the current position in accordance with the Encoding used and the specific character being read from the stream.</summary>
+ <param name="count">The number of characters to read.</param>
+ <returns>A character array containing data read from the underlying stream. This might be less than the number of characters requested if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The number of decoded characters to read is greater than <paramref name="count">count</paramref>. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="count">count</paramref> is negative.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadDecimal">
+ <summary>Reads a decimal value from the current stream and advances the current position of the stream by sixteen bytes.</summary>
+ <returns>A decimal value read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadDouble">
+ <summary>Reads an 8-byte floating point value from the current stream and advances the current position of the stream by eight bytes.</summary>
+ <returns>An 8-byte floating point value read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadInt16">
+ <summary>Reads a 2-byte signed integer from the current stream and advances the current position of the stream by two bytes.</summary>
+ <returns>A 2-byte signed integer read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadInt32">
+ <summary>Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes.</summary>
+ <returns>A 4-byte signed integer read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadInt64">
+ <summary>Reads an 8-byte signed integer from the current stream and advances the current position of the stream by eight bytes.</summary>
+ <returns>An 8-byte signed integer read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadSByte">
+ <summary>Reads a signed byte from this stream and advances the current position of the stream by one byte.</summary>
+ <returns>A signed byte read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadSingle">
+ <summary>Reads a 4-byte floating point value from the current stream and advances the current position of the stream by four bytes.</summary>
+ <returns>A 4-byte floating point value read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadString">
+ <summary>Reads a string from the current stream. The string is prefixed with the length, encoded as an integer seven bits at a time.</summary>
+ <returns>The string being read.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadUInt16">
+ <summary>Reads a 2-byte unsigned integer from the current stream using little-endian encoding and advances the position of the stream by two bytes.</summary>
+ <returns>A 2-byte unsigned integer read from this stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadUInt32">
+ <summary>Reads a 4-byte unsigned integer from the current stream and advances the position of the stream by four bytes.</summary>
+ <returns>A 4-byte unsigned integer read from this stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadUInt64">
+ <summary>Reads an 8-byte unsigned integer from the current stream and advances the position of the stream by eight bytes.</summary>
+ <returns>An 8-byte unsigned integer read from this stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="T:System.IO.BinaryWriter">
+ <summary>Writes primitive types in binary to a stream and supports writing strings in a specific encoding.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter"></see> class that writes to a stream.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter"></see> class based on the specified stream and using UTF-8 encoding.</summary>
+ <param name="output">The output stream.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support writing or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter"></see> class based on the specified stream and character encoding.</summary>
+ <param name="output">The output stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support writing or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter"></see> class based on the specified stream and character encoding, and optionally leaves the stream open.</summary>
+ <param name="output">The output stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="leaveOpen">true to leave the stream open after the <see cref="T:System.IO.BinaryWriter"></see> object is disposed; otherwise, false.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support writing or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="output">output</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ </member>
+ <member name="P:System.IO.BinaryWriter.BaseStream">
+ <summary>Gets the underlying stream of the <see cref="T:System.IO.BinaryWriter"></see>.</summary>
+ <returns>The underlying stream associated with the BinaryWriter.</returns>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Dispose">
+ <summary>Releases all resources used by the current instance of the <see cref="T:System.IO.BinaryWriter"></see> class.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryWriter"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Flush">
+ <summary>Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ </member>
+ <member name="F:System.IO.BinaryWriter.Null">
+ <summary>Specifies a <see cref="T:System.IO.BinaryWriter"></see> with no backing store.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.IO.BinaryWriter.OutStream">
+ <summary>Holds the underlying stream.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Seek(System.Int32,System.IO.SeekOrigin)">
+ <summary>Sets the position within the current stream.</summary>
+ <param name="offset">A byte offset relative to origin.</param>
+ <param name="origin">A field of <see cref="T:System.IO.SeekOrigin"></see> indicating the reference point from which the new position is to be obtained.</param>
+ <returns>The position with the current stream.</returns>
+ <exception cref="T:System.IO.IOException">The file pointer was moved to an invalid location.</exception>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.IO.SeekOrigin"></see> value is invalid.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>Writes a region of a byte array to the current stream.</summary>
+ <param name="buffer">A byte array containing the data to write.</param>
+ <param name="index">The starting point in buffer at which to begin writing.</param>
+ <param name="count">The number of bytes to write.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.UInt64)">
+ <summary>Writes an eight-byte unsigned integer to the current stream and advances the stream position by eight bytes.</summary>
+ <param name="value">The eight-byte unsigned integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.UInt32)">
+ <summary>Writes a four-byte unsigned integer to the current stream and advances the stream position by four bytes.</summary>
+ <param name="value">The four-byte unsigned integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.UInt16)">
+ <summary>Writes a two-byte unsigned integer to the current stream and advances the stream position by two bytes.</summary>
+ <param name="value">The two-byte unsigned integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.String)">
+ <summary>Writes a length-prefixed string to this stream in the current encoding of the <see cref="T:System.IO.BinaryWriter"></see>, and advances the current position of the stream in accordance with the encoding used and the specific characters being written to the stream.</summary>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Single)">
+ <summary>Writes a four-byte floating-point value to the current stream and advances the stream position by four bytes.</summary>
+ <param name="value">The four-byte floating-point value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.SByte)">
+ <summary>Writes a signed byte to the current stream and advances the stream position by one byte.</summary>
+ <param name="value">The signed byte to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Int64)">
+ <summary>Writes an eight-byte signed integer to the current stream and advances the stream position by eight bytes.</summary>
+ <param name="value">The eight-byte signed integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Char)">
+ <summary>Writes a Unicode character to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.</summary>
+ <param name="ch">The non-surrogate, Unicode character to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="ch">ch</paramref> is a single surrogate character.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Int16)">
+ <summary>Writes a two-byte signed integer to the current stream and advances the stream position by two bytes.</summary>
+ <param name="value">The two-byte signed integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Double)">
+ <summary>Writes an eight-byte floating-point value to the current stream and advances the stream position by eight bytes.</summary>
+ <param name="value">The eight-byte floating-point value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Decimal)">
+ <summary>Writes a decimal value to the current stream and advances the stream position by sixteen bytes.</summary>
+ <param name="value">The decimal value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Char[])">
+ <summary>Writes a character array to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.</summary>
+ <param name="chars">A character array containing the data to write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a section of a character array to the current stream, and advances the current position of the stream in accordance with the Encoding used and perhaps the specific characters being written to the stream.</summary>
+ <param name="chars">A character array containing the data to write.</param>
+ <param name="index">The starting point in chars from which to begin writing.</param>
+ <param name="count">The number of characters to write.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Byte[])">
+ <summary>Writes a byte array to the underlying stream.</summary>
+ <param name="buffer">A byte array containing the data to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Byte)">
+ <summary>Writes an unsigned byte to the current stream and advances the stream position by one byte.</summary>
+ <param name="value">The unsigned byte to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Boolean)">
+ <summary>Writes a one-byte Boolean value to the current stream, with 0 representing false and 1 representing true.</summary>
+ <param name="value">The Boolean value to write (0 or 1).</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Int32)">
+ <summary>Writes a four-byte signed integer to the current stream and advances the stream position by four bytes.</summary>
+ <param name="value">The four-byte signed integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write7BitEncodedInt(System.Int32)">
+ <summary>Writes a 32-bit integer in a compressed format.</summary>
+ <param name="value">The 32-bit integer to be written.</param>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">The stream is closed.</exception>
+ </member>
+ <member name="T:System.IO.BufferedStream">
+ <summary>Adds a buffering layer to read and write operations on another stream. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.IO.BufferedStream.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BufferedStream"></see> class with a default buffer size of 4096 bytes.</summary>
+ <param name="stream">The current stream.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.#ctor(System.IO.Stream,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BufferedStream"></see> class with the specified buffer size.</summary>
+ <param name="stream">The current stream.</param>
+ <param name="bufferSize">The buffer size in bytes.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is negative.</exception>
+ </member>
+ <member name="P:System.IO.BufferedStream.CanRead">
+ <summary>Gets a value indicating whether the current stream supports reading.</summary>
+ <returns>true if the stream supports reading; false if the stream is closed or was opened with write-only access.</returns>
+ </member>
+ <member name="P:System.IO.BufferedStream.CanSeek">
+ <summary>Gets a value indicating whether the current stream supports seeking.</summary>
+ <returns>true if the stream supports seeking; false if the stream is closed or if the stream was constructed from an operating system handle such as a pipe or output to the console.</returns>
+ </member>
+ <member name="P:System.IO.BufferedStream.CanWrite">
+ <summary>Gets a value indicating whether the current stream supports writing.</summary>
+ <returns>true if the stream supports writing; false if the stream is closed or was opened with read-only access.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.Flush">
+ <summary>Clears all buffers for this stream and causes any buffered data to be written to the underlying device.</summary>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.IO.IOException">The data source or repository is not open.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.FlushAsync(System.Threading.CancellationToken)">
+ <summary>Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="P:System.IO.BufferedStream.Length">
+ <summary>Gets the stream length in bytes.</summary>
+ <returns>The stream length in bytes.</returns>
+ <exception cref="T:System.IO.IOException">The underlying stream is null or closed.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="P:System.IO.BufferedStream.Position">
+ <summary>Gets the position within the current stream.</summary>
+ <returns>The position within the current stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The value passed to <see cref="M:System.IO.BufferedStream.Seek(System.Int64,System.IO.SeekOrigin)"></see> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs, such as the stream being closed.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>Copies bytes from the current buffered stream to an array.</summary>
+ <param name="array">The buffer to which bytes are to be copied.</param>
+ <param name="offset">The byte offset in the buffer at which to begin reading bytes.</param>
+ <param name="count">The number of bytes to be read.</param>
+ <returns>The total number of bytes read into <paramref name="array">array</paramref>. This can be less than the number of bytes requested if that many bytes are not currently available, or 0 if the end of the stream has been reached before any data can be read.</returns>
+ <exception cref="T:System.ArgumentException">Length of <paramref name="array">array</paramref> minus <paramref name="offset">offset</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">The stream is not open or is null.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write the data into.</param>
+ <param name="offset">The byte offset in buffer at which to begin writing data from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.ReadByte">
+ <summary>Reads a byte from the underlying stream and returns the byte cast to an int, or returns -1 if reading from the end of the stream.</summary>
+ <returns>The byte cast to an int, or -1 if reading from the end of the stream.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs, such as the stream being closed.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Seek(System.Int64,System.IO.SeekOrigin)">
+ <summary>Sets the position within the current buffered stream.</summary>
+ <param name="offset">A byte offset relative to origin.</param>
+ <param name="origin">A value of type <see cref="T:System.IO.SeekOrigin"></see> indicating the reference point from which to obtain the new position.</param>
+ <returns>The new position within the current buffered stream.</returns>
+ <exception cref="T:System.IO.IOException">The stream is not open or is null.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.SetLength(System.Int64)">
+ <summary>Sets the length of the buffered stream.</summary>
+ <param name="value">An integer indicating the desired length of the current buffered stream in bytes.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value">value</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">The stream is not open or is null.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support both writing and seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>Copies bytes to the buffered stream and advances the current position within the buffered stream by the number of bytes written.</summary>
+ <param name="array">The byte array from which to copy count bytes to the current buffered stream.</param>
+ <param name="offset">The offset in the buffer at which to begin copying bytes to the current buffered stream.</param>
+ <param name="count">The number of bytes to be written to the current buffered stream.</param>
+ <exception cref="T:System.ArgumentException">Length of <paramref name="array">array</paramref> minus <paramref name="offset">offset</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">The stream is closed or null.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in buffer from which to begin copying bytes to the stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.WriteByte(System.Byte)">
+ <summary>Writes a byte to the current position in the buffered stream.</summary>
+ <param name="value">A byte to write to the stream.</param>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="T:System.IO.EndOfStreamException">
+ <summary>The exception that is thrown when reading is attempted past the end of a stream.</summary>
+ </member>
+ <member name="M:System.IO.EndOfStreamException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException"></see> class with its message string set to a system-supplied message and its HRESULT set to COR_E_ENDOFSTREAM.</summary>
+ </member>
+ <member name="M:System.IO.EndOfStreamException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException"></see> class with its message string set to <paramref name="message">message</paramref> and its HRESULT set to COR_E_ENDOFSTREAM.</summary>
+ <param name="message">A string that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ </member>
+ <member name="M:System.IO.EndOfStreamException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">A string that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.IO.FileNotFoundException">
+ <summary>The exception that is thrown when an attempt to access a file that does not exist on disk fails.</summary>
+ </member>
+ <member name="M:System.IO.FileNotFoundException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException"></see> class with its message string set to a system-supplied message and its HRESULT set to COR_E_FILENOTFOUND.</summary>
+ </member>
+ <member name="M:System.IO.FileNotFoundException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException"></see> class with its message string set to <paramref name="message">message</paramref> and its HRESULT set to COR_E_FILENOTFOUND.</summary>
+ <param name="message">A description of the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ </member>
+ <member name="M:System.IO.FileNotFoundException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">A description of the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+ </member>
+ <member name="M:System.IO.FileNotFoundException.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException"></see> class with its message string set to <paramref name="message">message</paramref>, specifying the file name that cannot be found, and its HRESULT set to COR_E_FILENOTFOUND.</summary>
+ <param name="message">A description of the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ <param name="fileName">The full name of the file with the invalid image.</param>
+ </member>
+ <member name="M:System.IO.FileNotFoundException.#ctor(System.String,System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="fileName">The full name of the file with the invalid image.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+ </member>
+ <member name="P:System.IO.FileNotFoundException.FileName">
+ <summary>Gets the name of the file that cannot be found.</summary>
+ <returns>The name of the file, or null if no file name was passed to the constructor for this instance.</returns>
+ </member>
+ <member name="P:System.IO.FileNotFoundException.Message">
+ <summary>Gets the error message that explains the reason for the exception.</summary>
+ <returns>The error message.</returns>
+ </member>
+ <member name="M:System.IO.FileNotFoundException.ToString">
+ <summary>Returns the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace.</summary>
+ <returns>The fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace.</returns>
+ </member>
+ <member name="T:System.IO.InvalidDataException">
+ <summary>The exception that is thrown when a data stream is in an invalid format.</summary>
+ </member>
+ <member name="M:System.IO.InvalidDataException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.InvalidDataException"></see> class.</summary>
+ </member>
+ <member name="M:System.IO.InvalidDataException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.InvalidDataException"></see> class with a specified error message.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ </member>
+ <member name="M:System.IO.InvalidDataException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.InvalidDataException"></see> class with a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.IO.IOException">
+ <summary>The exception that is thrown when an I/O error occurs.</summary>
+ </member>
+ <member name="M:System.IO.IOException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.IOException"></see> class with its message string set to the empty string (&quot;&quot;), its HRESULT set to COR_E_IO, and its inner exception set to a null reference.</summary>
+ </member>
+ <member name="M:System.IO.IOException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.IOException"></see> class with its message string set to <paramref name="message">message</paramref>, its HRESULT set to COR_E_IO, and its inner exception set to null.</summary>
+ <param name="message">A <see cref="T:System.String"></see> that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ </member>
+ <member name="M:System.IO.IOException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.IOException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+ </member>
+ <member name="M:System.IO.IOException.#ctor(System.String,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.IOException"></see> class with its message string set to <paramref name="message">message</paramref> and its HRESULT user-defined.</summary>
+ <param name="message">A <see cref="T:System.String"></see> that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ <param name="hresult">An integer identifying the error that has occurred.</param>
+ </member>
+ <member name="T:System.IO.MemoryStream">
+ <summary>Creates a stream whose backing store is memory.</summary>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.MemoryStream"></see> class with an expandable capacity initialized to zero.</summary>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[])">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream"></see> class based on the specified byte array.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create the current stream.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.MemoryStream"></see> class with an expandable capacity initialized as specified.</summary>
+ <param name="capacity">The initial size of the internal array in bytes.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is negative.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Boolean)">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream"></see> class based on the specified byte array with the <see cref="P:System.IO.MemoryStream.CanWrite"></see> property set as specified.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="writable">The setting of the <see cref="P:System.IO.MemoryStream.CanWrite"></see> property, which determines whether the stream supports writing.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32)">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream"></see> class based on the specified region (index) of a byte array.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="index">The index into buffer at which the stream begins.</param>
+ <param name="count">The length of the stream in bytes.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream"></see> class based on the specified region of a byte array, with the <see cref="P:System.IO.MemoryStream.CanWrite"></see> property set as specified.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="index">The index in buffer at which the stream begins.</param>
+ <param name="count">The length of the stream in bytes.</param>
+ <param name="writable">The setting of the <see cref="P:System.IO.MemoryStream.CanWrite"></see> property, which determines whether the stream supports writing.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> are negative.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.MemoryStream"></see> class based on the specified region of a byte array, with the <see cref="P:System.IO.MemoryStream.CanWrite"></see> property set as specified, and the ability to call <see cref="M:System.IO.MemoryStream.GetBuffer"></see> set as specified.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="index">The index into buffer at which the stream begins.</param>
+ <param name="count">The length of the stream in bytes.</param>
+ <param name="writable">The setting of the <see cref="P:System.IO.MemoryStream.CanWrite"></see> property, which determines whether the stream supports writing.</param>
+ <param name="publiclyVisible">true to enable <see cref="M:System.IO.MemoryStream.GetBuffer"></see>, which returns the unsigned byte array from which the stream was created; otherwise, false.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ </member>
+ <member name="P:System.IO.MemoryStream.CanRead">
+ <summary>Gets a value indicating whether the current stream supports reading.</summary>
+ <returns>true if the stream is open.</returns>
+ </member>
+ <member name="P:System.IO.MemoryStream.CanSeek">
+ <summary>Gets a value indicating whether the current stream supports seeking.</summary>
+ <returns>true if the stream is open.</returns>
+ </member>
+ <member name="P:System.IO.MemoryStream.CanWrite">
+ <summary>Gets a value indicating whether the current stream supports writing.</summary>
+ <returns>true if the stream supports writing; otherwise, false.</returns>
+ </member>
+ <member name="P:System.IO.MemoryStream.Capacity">
+ <summary>Gets or sets the number of bytes allocated for this stream.</summary>
+ <returns>The length of the usable portion of the buffer for the stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">A capacity is set that is negative or less than the current length of the stream.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream is closed.</exception>
+ <exception cref="T:System.NotSupportedException">set is invoked on a stream whose capacity cannot be modified.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads all the bytes from the current stream and writes them to another stream, using a specified buffer size and cancellation token.</summary>
+ <param name="destination">The stream to which the contents of the current stream will be copied.</param>
+ <param name="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous copy operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="destination">destination</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="buffersize">buffersize</paramref> is negative or zero.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or the destination stream is disposed.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading, or the destination stream does not support writing.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.MemoryStream"></see> class and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.MemoryStream.Flush">
+ <summary>Overrides the <see cref="M:System.IO.Stream.Flush"></see> method so that no action is performed.</summary>
+ </member>
+ <member name="M:System.IO.MemoryStream.FlushAsync(System.Threading.CancellationToken)">
+ <summary>Asynchronously clears all buffers for this stream, and monitors cancellation requests.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="P:System.IO.MemoryStream.Length">
+ <summary>Gets the length of the stream in bytes.</summary>
+ <returns>The length of the stream in bytes.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="P:System.IO.MemoryStream.Position">
+ <summary>Gets or sets the current position within the stream.</summary>
+ <returns>The current position within the stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The position is set to a negative value or a value greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads a block of bytes from the current stream and writes the data to a buffer.</summary>
+ <param name="buffer">When this method returns, contains the specified byte array with the values between offset and (offset + count - 1) replaced by the characters read from the current stream.</param>
+ <param name="offset">The zero-based byte offset in buffer at which to begin storing data from the current stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <returns>The total number of bytes written into the buffer. This can be less than the number of bytes requested if that number of bytes are not currently available, or zero if the end of the stream is reached before any bytes are read.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="offset">offset</paramref> subtracted from the buffer length is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write the data into.</param>
+ <param name="offset">The byte offset in buffer at which to begin writing data from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.ReadByte">
+ <summary>Reads a byte from the current stream.</summary>
+ <returns>The byte cast to a <see cref="T:System.Int32"></see>, or -1 if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Seek(System.Int64,System.IO.SeekOrigin)">
+ <summary>Sets the position within the current stream to the specified value.</summary>
+ <param name="offset">The new position within the stream. This is relative to the loc parameter, and can be positive or negative.</param>
+ <param name="loc">A value of type <see cref="T:System.IO.SeekOrigin"></see>, which acts as the seek reference point.</param>
+ <returns>The new position within the stream, calculated by combining the initial reference point and the offset.</returns>
+ <exception cref="T:System.IO.IOException">Seeking is attempted before the beginning of the stream.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> is greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ArgumentException">There is an invalid <see cref="T:System.IO.SeekOrigin"></see>. -or- <paramref name="offset">offset</paramref> caused an arithmetic overflow.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.SetLength(System.Int64)">
+ <summary>Sets the length of the current stream to the specified value.</summary>
+ <param name="value">The value at which to set the length.</param>
+ <exception cref="T:System.NotSupportedException">The current stream is not resizable and <paramref name="value">value</paramref> is larger than the current capacity. -or- The current stream does not support writing.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="value">value</paramref> is negative or is greater than the maximum length of the <see cref="T:System.IO.MemoryStream"></see>, where the maximum length is(<see cref="F:System.Int32.MaxValue"></see> - origin), and origin is the index into the underlying buffer at which the stream starts.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.ToArray">
+ <summary>Writes the stream contents to a byte array, regardless of the <see cref="P:System.IO.MemoryStream.Position"></see> property.</summary>
+ <returns>A new byte array.</returns>
+ </member>
+ <member name="M:System.IO.MemoryStream.TryGetBuffer(System.ArraySegment{System.Byte}@)">
+ <summary>Returns the array of unsigned bytes from which this stream was created. The return value indicates whether the conversion succeeded.</summary>
+ <param name="buffer">The byte array segment from which this stream was created.</param>
+ <returns>true if the conversion was successful; otherwise, false.</returns>
+ </member>
+ <member name="M:System.IO.MemoryStream.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>Writes a block of bytes to the current stream using data read from a buffer.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in buffer at which to begin copying bytes to the current stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing. For additional information see <see cref="P:System.IO.Stream.CanWrite"></see>. -or- The current position is closer than <paramref name="count">count</paramref> bytes to the end of the stream, and the capacity cannot be modified.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="offset">offset</paramref> subtracted from the buffer length is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> are negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in buffer from which to begin copying bytes to the stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.WriteByte(System.Byte)">
+ <summary>Writes a byte to the current stream at the current position.</summary>
+ <param name="value">The byte to write.</param>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing. For additional information see <see cref="P:System.IO.Stream.CanWrite"></see>. -or- The current position is at the end of the stream, and the capacity cannot be modified.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.WriteTo(System.IO.Stream)">
+ <summary>Writes the entire contents of this memory stream to another stream.</summary>
+ <param name="stream">The stream to write this memory stream to.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current or target stream is closed.</exception>
+ </member>
+ <member name="T:System.IO.SeekOrigin">
+ <summary>Specifies the position in a stream to use for seeking.</summary>
+ </member>
+ <member name="F:System.IO.SeekOrigin.Begin">
+ <summary>Specifies the beginning of a stream.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.IO.SeekOrigin.Current">
+ <summary>Specifies the current position within a stream.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.IO.SeekOrigin.End">
+ <summary>Specifies the end of a stream.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.IO.Stream">
+ <summary>Provides a generic view of a sequence of bytes. This is an abstract class.</summary>
+ </member>
+ <member name="M:System.IO.Stream.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.Stream"></see> class.</summary>
+ </member>
+ <member name="P:System.IO.Stream.CanRead">
+ <summary>When overridden in a derived class, gets a value indicating whether the current stream supports reading.</summary>
+ <returns>true if the stream supports reading; otherwise, false.</returns>
+ </member>
+ <member name="P:System.IO.Stream.CanSeek">
+ <summary>When overridden in a derived class, gets a value indicating whether the current stream supports seeking.</summary>
+ <returns>true if the stream supports seeking; otherwise, false.</returns>
+ </member>
+ <member name="P:System.IO.Stream.CanTimeout">
+ <summary>Gets a value that determines whether the current stream can time out.</summary>
+ <returns>A value that determines whether the current stream can time out.</returns>
+ </member>
+ <member name="P:System.IO.Stream.CanWrite">
+ <summary>When overridden in a derived class, gets a value indicating whether the current stream supports writing.</summary>
+ <returns>true if the stream supports writing; otherwise, false.</returns>
+ </member>
+ <member name="M:System.IO.Stream.CopyTo(System.IO.Stream,System.Int32)">
+ <summary>Reads the bytes from the current stream and writes them to another stream, using a specified buffer size.</summary>
+ <param name="destination">The stream to which the contents of the current stream will be copied.</param>
+ <param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 81920.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="destination">destination</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is negative or zero.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading. -or- <paramref name="destination">destination</paramref> does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or <paramref name="destination">destination</paramref> were closed before the <see cref="M:System.IO.Stream.CopyTo(System.IO.Stream)"></see> method was called.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.Stream.CopyTo(System.IO.Stream)">
+ <summary>Reads the bytes from the current stream and writes them to another stream.</summary>
+ <param name="destination">The stream to which the contents of the current stream will be copied.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="destination">destination</paramref> is null.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading. -or- <paramref name="destination">destination</paramref> does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or <paramref name="destination">destination</paramref> were closed before the <see cref="M:System.IO.Stream.CopyTo(System.IO.Stream)"></see> method was called.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.Stream.CopyToAsync(System.IO.Stream)">
+ <summary>Asynchronously reads the bytes from the current stream and writes them to another stream.</summary>
+ <param name="destination">The stream to which the contents of the current stream will be copied.</param>
+ <returns>A task that represents the asynchronous copy operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="destination">destination</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or the destination stream is disposed.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading, or the destination stream does not support writing.</exception>
+ </member>
+ <member name="M:System.IO.Stream.CopyToAsync(System.IO.Stream,System.Int32)">
+ <summary>Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size.</summary>
+ <param name="destination">The stream to which the contents of the current stream will be copied.</param>
+ <param name="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero. The default size is 81920.</param>
+ <returns>A task that represents the asynchronous copy operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="destination">destination</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="buffersize">buffersize</paramref> is negative or zero.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or the destination stream is disposed.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading, or the destination stream does not support writing.</exception>
+ </member>
+ <member name="M:System.IO.Stream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size and cancellation token.</summary>
+ <param name="destination">The stream to which the contents of the current stream will be copied.</param>
+ <param name="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero. The default size is 81920.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
+ <returns>A task that represents the asynchronous copy operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="destination">destination</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="buffersize">buffersize</paramref> is negative or zero.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or the destination stream is disposed.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading, or the destination stream does not support writing.</exception>
+ </member>
+ <member name="M:System.IO.Stream.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.IO.Stream"></see>.</summary>
+ </member>
+ <member name="M:System.IO.Stream.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.Stream"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.Stream.Flush">
+ <summary>When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.</summary>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.Stream.FlushAsync">
+ <summary>Asynchronously clears all buffers for this stream and causes any buffered data to be written to the underlying device.</summary>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.Stream.FlushAsync(System.Threading.CancellationToken)">
+ <summary>Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="P:System.IO.Stream.Length">
+ <summary>When overridden in a derived class, gets the length in bytes of the stream.</summary>
+ <returns>A long value representing the length of the stream in bytes.</returns>
+ <exception cref="T:System.NotSupportedException">A class derived from Stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="F:System.IO.Stream.Null">
+ <summary>A Stream with no backing store.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.IO.Stream.Position">
+ <summary>When overridden in a derived class, gets or sets the position within the current stream.</summary>
+ <returns>The current position within the stream.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.Stream.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</summary>
+ <param name="buffer">An array of bytes. When this method returns, the buffer contains the specified byte array with the values between offset and (offset + count - 1) replaced by the bytes read from the current source.</param>
+ <param name="offset">The zero-based byte offset in buffer at which to begin storing the data read from the current stream.</param>
+ <param name="count">The maximum number of bytes to be read from the current stream.</param>
+ <returns>The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</summary>
+ <param name="buffer">The buffer to write the data into.</param>
+ <param name="offset">The byte offset in buffer at which to begin writing data from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write the data into.</param>
+ <param name="offset">The byte offset in buffer at which to begin writing data from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.Stream.ReadByte">
+ <summary>Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.</summary>
+ <returns>The unsigned byte cast to an Int32, or -1 if at the end of the stream.</returns>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="P:System.IO.Stream.ReadTimeout">
+ <summary>Gets or sets a value, in miliseconds, that determines how long the stream will attempt to read before timing out.</summary>
+ <returns>A value, in miliseconds, that determines how long the stream will attempt to read before timing out.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.IO.Stream.ReadTimeout"></see> method always throws an <see cref="T:System.InvalidOperationException"></see>.</exception>
+ </member>
+ <member name="M:System.IO.Stream.Seek(System.Int64,System.IO.SeekOrigin)">
+ <summary>When overridden in a derived class, sets the position within the current stream.</summary>
+ <param name="offset">A byte offset relative to the origin parameter.</param>
+ <param name="origin">A value of type <see cref="T:System.IO.SeekOrigin"></see> indicating the reference point used to obtain the new position.</param>
+ <returns>The new position within the current stream.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking, such as if the stream is constructed from a pipe or console output.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.Stream.SetLength(System.Int64)">
+ <summary>When overridden in a derived class, sets the length of the current stream.</summary>
+ <param name="value">The desired length of the current stream in bytes.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.Stream.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.</summary>
+ <param name="buffer">An array of bytes. This method copies count bytes from buffer to the current stream.</param>
+ <param name="offset">The zero-based byte offset in buffer at which to begin copying bytes to the current stream.</param>
+ <param name="count">The number of bytes to be written to the current stream.</param>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occured, such as the specified file cannot be found.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException"><see cref="M:System.IO.Stream.Write(System.Byte[],System.Int32,System.Int32)"></see> was called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in buffer from which to begin copying bytes to the stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in buffer from which to begin copying bytes to the stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.Stream.WriteByte(System.Byte)">
+ <summary>Writes a byte to the current position in the stream and advances the position within the stream by one byte.</summary>
+ <param name="value">The byte to write to the stream.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing, or the stream is already closed.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="P:System.IO.Stream.WriteTimeout">
+ <summary>Gets or sets a value, in miliseconds, that determines how long the stream will attempt to write before timing out.</summary>
+ <returns>A value, in miliseconds, that determines how long the stream will attempt to write before timing out.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.IO.Stream.WriteTimeout"></see> method always throws an <see cref="T:System.InvalidOperationException"></see>.</exception>
+ </member>
+ <member name="T:System.IO.StreamReader">
+ <summary>Implements a <see cref="T:System.IO.TextReader"></see> that reads characters from a byte stream in a particular encoding.</summary>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader"></see> class for the specified stream.</summary>
+ <param name="stream">The stream to be read.</param>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader"></see> class for the specified stream, with the specified byte order mark detection option.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader"></see> class for the specified stream, with the specified character encoding.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader"></see> class for the specified stream, with the specified character encoding and byte order mark detection option.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader"></see> class for the specified stream, with the specified character encoding, byte order mark detection option, and buffer size.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <param name="bufferSize">The minimum buffer size.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is less than or equal to zero.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader"></see> class for the specified stream based on the specified character encoding, byte order mark detection option, and buffer size, and optionally leaves the stream open.</summary>
+ <param name="stream">The stream to read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">true to look for byte order marks at the beginning of the file; otherwise, false.</param>
+ <param name="bufferSize">The minimum buffer size.</param>
+ <param name="leaveOpen">true to leave the stream open after the <see cref="T:System.IO.StreamReader"></see> object is disposed; otherwise, false.</param>
+ </member>
+ <member name="P:System.IO.StreamReader.BaseStream">
+ <summary>Returns the underlying stream.</summary>
+ <returns>The underlying stream.</returns>
+ </member>
+ <member name="P:System.IO.StreamReader.CurrentEncoding">
+ <summary>Gets the current character encoding that the current <see cref="T:System.IO.StreamReader"></see> object is using.</summary>
+ <returns>The current character encoding used by the current reader. The value can be different after the first call to any <see cref="Overload:System.IO.StreamReader.Read"></see> method of <see cref="T:System.IO.StreamReader"></see>, since encoding autodetection is not done until the first call to a <see cref="Overload:System.IO.StreamReader.Read"></see> method.</returns>
+ </member>
+ <member name="M:System.IO.StreamReader.DiscardBufferedData">
+ <summary>Clears the internal buffer.</summary>
+ </member>
+ <member name="M:System.IO.StreamReader.Dispose(System.Boolean)">
+ <summary>Closes the underlying stream, releases the unmanaged resources used by the <see cref="T:System.IO.StreamReader"></see>, and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="P:System.IO.StreamReader.EndOfStream">
+ <summary>Gets a value that indicates whether the current stream position is at the end of the stream.</summary>
+ <returns>true if the current stream position is at the end of the stream; otherwise false.</returns>
+ <exception cref="T:System.ObjectDisposedException">The underlying stream has been disposed.</exception>
+ </member>
+ <member name="F:System.IO.StreamReader.Null">
+ <summary>A <see cref="T:System.IO.StreamReader"></see> object around an empty stream.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.IO.StreamReader.Peek">
+ <summary>Returns the next available character but does not consume it.</summary>
+ <returns>An integer representing the next character to be read, or -1 if there are no characters to be read or if the stream does not support seeking.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.Read">
+ <summary>Reads the next character from the input stream and advances the character position by one character.</summary>
+ <returns>The next character from the input stream represented as an <see cref="T:System.Int32"></see> object, or -1 if no more characters are available.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum of characters from the current stream into a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The index of buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read.</param>
+ <returns>The number of characters that have been read, or 0 if at the end of the stream and no data was read. The number will be less than or equal to the <paramref name="count">count</paramref> parameter, depending on whether the data is available within the stream.</returns>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs, such as the stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current stream asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the stream is reached before the specified number of characters is written into the buffer, the current method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of characters read into the buffer. The result value can be less than the number of characters requested if the number of characters currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadBlock(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current stream and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read.</param>
+ <returns>The number of characters that have been read. The number will be less than or equal to <paramref name="count">count</paramref>, depending on whether all input characters have been read.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.StreamReader"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current stream asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the stream is reached before the specified number of characters is written into the buffer, the method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of characters read into the buffer. The result value can be less than the number of characters requested if the number of characters currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadLine">
+ <summary>Reads a line of characters from the current stream and returns the data as a string.</summary>
+ <returns>The next line from the input stream, or null if the end of the input stream is reached.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadLineAsync">
+ <summary>Reads a line of characters asynchronously from the current stream and returns the data as a string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the next line from the stream, or is null if all the characters have been read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadToEnd">
+ <summary>Reads all characters from the current position to the end of the stream.</summary>
+ <returns>The rest of the stream as a string, from the current position to the end. If the current position is at the end of the stream, returns an empty string (&quot;&quot;).</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadToEndAsync">
+ <summary>Reads all characters from the current position to the end of the stream asynchronously and returns them as one string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains a string with the characters from the current position to the end of the stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters is larger than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="T:System.IO.StreamWriter">
+ <summary>Implements a <see cref="T:System.IO.TextWriter"></see> for writing characters to a stream in a particular encoding.</summary>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter"></see> class for the specified stream by using UTF-8 encoding and the default buffer size.</summary>
+ <param name="stream">The stream to write to.</param>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> is not writable.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter"></see> class for the specified stream by using the specified encoding and the default buffer size.</summary>
+ <param name="stream">The stream to write to.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> is not writable.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter"></see> class for the specified stream by using the specified encoding and buffer size.</summary>
+ <param name="stream">The stream to write to.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="bufferSize">The buffer size, in bytes.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> is not writable.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter"></see> class for the specified stream by using the specified encoding and buffer size, and optionally leaves the stream open.</summary>
+ <param name="stream">The stream to write to.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="bufferSize">The buffer size, in bytes.</param>
+ <param name="leaveOpen">true to leave the stream open after the <see cref="T:System.IO.StreamWriter"></see> object is disposed; otherwise, false.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="stream">stream</paramref> or <paramref name="encoding">encoding</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> is not writable.</exception>
+ </member>
+ <member name="P:System.IO.StreamWriter.AutoFlush">
+ <summary>Gets or sets a value indicating whether the <see cref="T:System.IO.StreamWriter"></see> will flush its buffer to the underlying stream after every call to <see cref="M:System.IO.StreamWriter.Write(System.Char)"></see>.</summary>
+ <returns>true to force <see cref="T:System.IO.StreamWriter"></see> to flush its buffer; otherwise, false.</returns>
+ </member>
+ <member name="P:System.IO.StreamWriter.BaseStream">
+ <summary>Gets the underlying stream that interfaces with a backing store.</summary>
+ <returns>The stream this StreamWriter is writing to.</returns>
+ </member>
+ <member name="M:System.IO.StreamWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.StreamWriter"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ <exception cref="T:System.Text.EncoderFallbackException">The current encoding does not support displaying half of a Unicode surrogate pair.</exception>
+ </member>
+ <member name="P:System.IO.StreamWriter.Encoding">
+ <summary>Gets the <see cref="T:System.Text.Encoding"></see> in which the output is written.</summary>
+ <returns>The <see cref="T:System.Text.Encoding"></see> specified in the constructor for the current instance, or <see cref="T:System.Text.UTF8Encoding"></see> if an encoding was not specified.</returns>
+ </member>
+ <member name="M:System.IO.StreamWriter.Flush">
+ <summary>Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream.</summary>
+ <exception cref="T:System.ObjectDisposedException">The current writer is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error has occurred.</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">The current encoding does not support displaying half of a Unicode surrogate pair.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.FlushAsync">
+ <summary>Clears all buffers for this stream asynchronously and causes any buffered data to be written to the underlying device.</summary>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="F:System.IO.StreamWriter.Null">
+ <summary>Provides a StreamWriter with no backing store that can be written to, but not read from.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.Char)">
+ <summary>Writes a character to the stream.</summary>
+ <param name="value">The character to write to the stream.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter"></see> is at the end the stream.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.Char[])">
+ <summary>Writes a character array to the stream.</summary>
+ <param name="buffer">A character array containing the data to write. If buffer is null, nothing is written.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter"></see> is at the end the stream.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.String)">
+ <summary>Writes a string to the stream.</summary>
+ <param name="value">The string to write to the stream. If value is null, nothing is written.</param>
+ <exception cref="T:System.ObjectDisposedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter"></see> is at the end the stream.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the stream.</summary>
+ <param name="buffer">A character array that contains the data to write.</param>
+ <param name="index">The character position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException"><see cref="P:System.IO.StreamWriter.AutoFlush"></see> is true or the <see cref="T:System.IO.StreamWriter"></see> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter"></see> is at the end the stream.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteAsync(System.Char)">
+ <summary>Writes a character to the stream asynchronously.</summary>
+ <param name="value">The character to write to the stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteAsync(System.String)">
+ <summary>Writes a string to the stream asynchronously.</summary>
+ <param name="value">The string to write to the stream. If value is null, nothing is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the stream asynchronously.</summary>
+ <param name="buffer">A character array that contains the data to write.</param>
+ <param name="index">The character position in the buffer at which to begin reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index">index</paramref> plus <paramref name="count">count</paramref> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync">
+ <summary>Writes a line terminator asynchronously to the stream.</summary>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync(System.Char)">
+ <summary>Writes a character followed by a line terminator asynchronously to the stream.</summary>
+ <param name="value">The character to write to the stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync(System.String)">
+ <summary>Writes a string followed by a line terminator asynchronously to the stream.</summary>
+ <param name="value">The string to write. If the value is null, only a line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters followed by a line terminator asynchronously to the stream.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index">index</paramref> plus <paramref name="count">count</paramref> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="T:System.IO.StringReader">
+ <summary>Implements a <see cref="T:System.IO.TextReader"></see> that reads from a string.</summary>
+ </member>
+ <member name="M:System.IO.StringReader.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringReader"></see> class that reads from the specified string.</summary>
+ <param name="s">The string to which the <see cref="T:System.IO.StringReader"></see> should be initialized.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s">s</paramref> parameter is null.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.StringReader"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.StringReader.Peek">
+ <summary>Returns the next available character but does not consume it.</summary>
+ <returns>An integer representing the next character to be read, or -1 if no more characters are available or the stream does not support seeking.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.Read">
+ <summary>Reads the next character from the input string and advances the character position by one character.</summary>
+ <returns>The next character from the underlying string, or -1 if no more characters are available.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a block of characters from the input string and advances the character position by <paramref name="count">count</paramref>.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The starting index in the buffer.</param>
+ <param name="count">The number of characters to read.</param>
+ <returns>The total number of characters read into the buffer. This can be less than the number of characters requested if that many characters are not currently available, or zero if the end of the underlying string has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current string asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the string is reached before the specified number of characters is written into the buffer, the method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the string has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current string asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the string is reached before the specified number of characters is written into the buffer, the method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the string has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadLine">
+ <summary>Reads a line of characters from the current string and returns the data as a string.</summary>
+ <returns>The next line from the current string, or null if the end of the string is reached.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadLineAsync">
+ <summary>Reads a line of characters asynchronously from the current string and returns the data as a string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the next line from the string reader, or is null if all the characters have been read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadToEnd">
+ <summary>Reads all characters from the current position to the end of the string and returns them as a single string.</summary>
+ <returns>The content from the current position to the end of the underlying string.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadToEndAsync">
+ <summary>Reads all characters from the current position to the end of the string asynchronously and returns them as a single string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains a string with the characters from the current position to the end of the string.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters is larger than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="T:System.IO.StringWriter">
+ <summary>Implements a <see cref="T:System.IO.TextWriter"></see> for writing information to a string. The information is stored in an underlying <see cref="T:System.Text.StringBuilder"></see>.</summary>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter"></see> class.</summary>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor(System.IFormatProvider)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter"></see> class with the specified format control.</summary>
+ <param name="formatProvider">An <see cref="T:System.IFormatProvider"></see> object that controls formatting.</param>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter"></see> class that writes to the specified <see cref="T:System.Text.StringBuilder"></see>.</summary>
+ <param name="sb">The <see cref="T:System.Text.StringBuilder"></see> object to write to.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="sb">sb</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder,System.IFormatProvider)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter"></see> class that writes to the specified <see cref="T:System.Text.StringBuilder"></see> and has the specified format provider.</summary>
+ <param name="sb">The <see cref="T:System.Text.StringBuilder"></see> object to write to.</param>
+ <param name="formatProvider">An <see cref="T:System.IFormatProvider"></see> object that controls formatting.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="sb">sb</paramref> is null.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.StringWriter"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="P:System.IO.StringWriter.Encoding">
+ <summary>Gets the <see cref="T:System.Text.Encoding"></see> in which the output is written.</summary>
+ <returns>The Encoding in which the output is written.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.FlushAsync">
+ <summary>Asynchronously clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.GetStringBuilder">
+ <summary>Returns the underlying <see cref="T:System.Text.StringBuilder"></see>.</summary>
+ <returns>The underlying StringBuilder.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.ToString">
+ <summary>Returns a string containing the characters written to the current StringWriter so far.</summary>
+ <returns>The string containing the characters written to the current StringWriter.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.Char)">
+ <summary>Writes a character to the string.</summary>
+ <param name="value">The character to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The writer is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.String)">
+ <summary>Writes a string to the current string.</summary>
+ <param name="value">The string to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The writer is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the string.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">(<paramref name="index">index</paramref> + <paramref name="count">count</paramref>)&gt; <paramref name="buffer">buffer</paramref>. Length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The writer is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.Char)">
+ <summary>Writes a character to the string asynchronously.</summary>
+ <param name="value">The character to write to the string.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.String)">
+ <summary>Writes a string to the current string asynchronously.</summary>
+ <param name="value">The string to write. If value is null, nothing is written to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the string asynchronously.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index">index</paramref> plus <paramref name="count">count</paramref> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.Char)">
+ <summary>Writes a character followed by a line terminator asynchronously to the string.</summary>
+ <param name="value">The character to write to the string.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.String)">
+ <summary>Writes a string followed by a line terminator asynchronously to the current string.</summary>
+ <param name="value">The string to write. If the value is null, only a line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters followed by a line terminator asynchronously to the string.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index">index</paramref> plus <paramref name="count">count</paramref> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="T:System.IO.TextReader">
+ <summary>Represents a reader that can read a sequential series of characters.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.TextReader"></see> class.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.IO.TextReader"></see> object.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.TextReader"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="F:System.IO.TextReader.Null">
+ <summary>Provides a TextReader with no data to read from.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.IO.TextReader.Peek">
+ <summary>Reads the next character without changing the state of the reader or the character source. Returns the next available character without actually reading it from the reader.</summary>
+ <returns>An integer representing the next character to be read, or -1 if no more characters are available or the reader does not support seeking.</returns>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.Read">
+ <summary>Reads the next character from the text reader and advances the character position by one character.</summary>
+ <returns>The next character from the text reader, or -1 if no more characters are available. The default implementation returns -1.</returns>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current reader and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the reader is reached before the specified number of characters is read into the buffer, the method returns.</param>
+ <returns>The number of characters that have been read. The number will be less than or equal to <paramref name="count">count</paramref>, depending on whether the data is available within the reader. This method returns 0 (zero) if it is called when no more characters are left to read.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current text reader asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the text is reached before the specified number of characters is read into the buffer, the current method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the text has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadBlock(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current text reader and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, this parameter contains the specified character array with the values between index and (index + count -1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read.</param>
+ <returns>The number of characters that have been read. The number will be less than or equal to <paramref name="count">count</paramref>, depending on whether all input characters have been read.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current text reader asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in buffer at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the text is reached before the specified number of characters is read into the buffer, the current method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the text has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadLine">
+ <summary>Reads a line of characters from the text reader and returns the data as a string.</summary>
+ <returns>The next line from the reader, or null if all characters have been read.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader"></see> is closed.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue"></see></exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadLineAsync">
+ <summary>Reads a line of characters asynchronously and returns the data as a string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains the next line from the text reader, or is null if all of the characters have been read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadToEnd">
+ <summary>Reads all characters from the current position to the end of the text reader and returns them as one string.</summary>
+ <returns>A string that contains all characters from the current position to the end of the text reader.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader"></see> is closed.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue"></see></exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadToEndAsync">
+ <summary>Reads all characters from the current position to the end of the text reader asynchronously and returns them as one string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult">TResult</paramref> parameter contains a string with the characters from the current position to the end of the text reader.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters is larger than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="T:System.IO.TextWriter">
+ <summary>Represents a writer that can write a sequential series of characters. This class is abstract.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.TextWriter"></see> class.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.#ctor(System.IFormatProvider)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.TextWriter"></see> class with the specified format provider.</summary>
+ <param name="formatProvider">An <see cref="T:System.IFormatProvider"></see> object that controls formatting.</param>
+ </member>
+ <member name="F:System.IO.TextWriter.CoreNewLine">
+ <summary>Stores the newline characters used for this TextWriter.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.IO.TextWriter.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.IO.TextWriter"></see> object.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.TextWriter"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="P:System.IO.TextWriter.Encoding">
+ <summary>When overridden in a derived class, returns the character encoding in which the output is written.</summary>
+ <returns>The character encoding in which the output is written.</returns>
+ </member>
+ <member name="M:System.IO.TextWriter.Flush">
+ <summary>Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.FlushAsync">
+ <summary>Asynchronously clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="P:System.IO.TextWriter.FormatProvider">
+ <summary>Gets an object that controls formatting.</summary>
+ <returns>An <see cref="T:System.IFormatProvider"></see> object for a specific culture, or the formatting of the current culture if no other culture is specified.</returns>
+ </member>
+ <member name="P:System.IO.TextWriter.NewLine">
+ <summary>Gets or sets the line terminator string used by the current TextWriter.</summary>
+ <returns>The line terminator string for the current TextWriter.</returns>
+ </member>
+ <member name="F:System.IO.TextWriter.Null">
+ <summary>Provides a TextWriter with no backing store that can be written to, but not read from.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object,System.Object)">
+ <summary>Writes a formatted string to the text string or stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object,System.Object)"></see> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <param name="arg2">The third object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is three).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the text string or stream.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start retrieving data.</param>
+ <param name="count">The number of characters to write.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer">buffer</paramref> parameter is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object[])">
+ <summary>Writes a formatted string to the text string or stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object[])"></see> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg">An object array that contains zero or more objects to format and write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> or <paramref name="arg">arg</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero), or greater than or equal to the length of the <paramref name="arg">arg</paramref> array.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object)">
+ <summary>Writes a formatted string to the text string or stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object)"></see> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is one).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.UInt64)">
+ <summary>Writes the text representation of an 8-byte unsigned integer to the text string or stream.</summary>
+ <param name="value">The 8-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.UInt32)">
+ <summary>Writes the text representation of a 4-byte unsigned integer to the text string or stream.</summary>
+ <param name="value">The 4-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String)">
+ <summary>Writes a string to the text string or stream.</summary>
+ <param name="value">The string to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Single)">
+ <summary>Writes the text representation of a 4-byte floating-point value to the text string or stream.</summary>
+ <param name="value">The 4-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object)">
+ <summary>Writes a formatted string to the text string or stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object)"></see> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero) or greater than or equal to the number of objects to be formatted (which, for this method overload, is two).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Int64)">
+ <summary>Writes the text representation of an 8-byte signed integer to the text string or stream.</summary>
+ <param name="value">The 8-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Int32)">
+ <summary>Writes the text representation of a 4-byte signed integer to the text string or stream.</summary>
+ <param name="value">The 4-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Double)">
+ <summary>Writes the text representation of an 8-byte floating-point value to the text string or stream.</summary>
+ <param name="value">The 8-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Decimal)">
+ <summary>Writes the text representation of a decimal value to the text string or stream.</summary>
+ <param name="value">The decimal value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Char[])">
+ <summary>Writes a character array to the text string or stream.</summary>
+ <param name="buffer">The character array to write to the text stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Char)">
+ <summary>Writes a character to the text string or stream.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Object)">
+ <summary>Writes the text representation of an object to the text string or stream by calling the ToString method on that object.</summary>
+ <param name="value">The object to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Boolean)">
+ <summary>Writes the text representation of a Boolean value to the text string or stream.</summary>
+ <param name="value">The Boolean value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the text string or stream asynchronously.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start retrieving data.</param>
+ <param name="count">The number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index">index</paramref> plus <paramref name="count">count</paramref> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.String)">
+ <summary>Writes a string to the text string or stream asynchronously.</summary>
+ <param name="value">The string to write. If value is null, nothing is written to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.Char)">
+ <summary>Writes a character to the text string or stream asynchronously.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.Char[])">
+ <summary>Writes a character array to the text string or stream asynchronously.</summary>
+ <param name="buffer">The character array to write to the text stream. If buffer is null, nothing is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String)">
+ <summary>Writes a string followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The string to write. If value is null, only the line terminator is written.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object)">
+ <summary>Writes a formatted string and a new line to the text string or stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object)"></see> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is two).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters followed by a line terminator to the text string or stream.</summary>
+ <param name="buffer">The character array from which data is read.</param>
+ <param name="index">The character position in buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index">index</paramref> is less than <paramref name="count">count</paramref>.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer">buffer</paramref> parameter is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object[])">
+ <summary>Writes out a formatted string and a new line, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)"></see>.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg">An object array that contains zero or more objects to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">A string or object is passed in as null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero), or greater than or equal to the length of the <paramref name="arg">arg</paramref> array.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object)">
+ <summary>Writes a formatted string and a new line to the text string or stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object)"></see> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is one).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.UInt64)">
+ <summary>Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The 8-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object,System.Object)">
+ <summary>Writes out a formatted string and a new line, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)"></see>.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <param name="arg2">The third object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException"><paramref name="format">format</paramref> is not a valid composite format string. -or- The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is three).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.UInt32)">
+ <summary>Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The 4-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Single)">
+ <summary>Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The 4-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Double)">
+ <summary>Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The 8-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Int64)">
+ <summary>Writes the text representation of an 8-byte signed integer followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The 8-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Int32)">
+ <summary>Writes the text representation of a 4-byte signed integer followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The 4-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Decimal)">
+ <summary>Writes the text representation of a decimal value followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The decimal value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Char[])">
+ <summary>Writes an array of characters followed by a line terminator to the text string or stream.</summary>
+ <param name="buffer">The character array from which data is read.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Char)">
+ <summary>Writes a character followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Boolean)">
+ <summary>Writes the text representation of a Boolean value followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The Boolean value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine">
+ <summary>Writes a line terminator to the text string or stream.</summary>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Object)">
+ <summary>Writes the text representation of an object by calling the ToString method on that object, followed by a line terminator to the text string or stream.</summary>
+ <param name="value">The object to write. If value is null, only the line terminator is written.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter"></see> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.String)">
+ <summary>Writes a string followed by a line terminator asynchronously to the text string or stream.</summary>
+ <param name="value">The string to write. If the value is null, only a line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync">
+ <summary>Writes a line terminator asynchronously to the text string or stream.</summary>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char)">
+ <summary>Writes a character followed by a line terminator asynchronously to the text string or stream.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char[])">
+ <summary>Writes an array of characters followed by a line terminator asynchronously to the text string or stream.</summary>
+ <param name="buffer">The character array to write to the text stream. If the character array is null, only the line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters followed by a line terminator asynchronously to the text string or stream.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start retrieving data.</param>
+ <param name="count">The number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index">index</paramref> plus <paramref name="count">count</paramref> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ </members>
+</doc></span> \ No newline at end of file