Release 4.0.0-preview1-00304
[platform/core/csapi/tizenfx.git] / pkg / build / tizen40 / ref / System.Text.Encoding.xml
1 <?xml version="1.0" encoding="utf-8"?><span>
2 <doc>
3   <assembly>
4     <name>System.Text.Encoding</name>
5   </assembly>
6   <members>
7     <member name="T:System.Text.Decoder">
8       <summary>Converts a sequence of encoded bytes into a set of characters.</summary>
9     </member>
10     <member name="M:System.Text.Decoder.#ctor">
11       <summary>Initializes a new instance of the <see cref="T:System.Text.Decoder"></see> class.</summary>
12     </member>
13     <member name="M:System.Text.Decoder.Convert(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@)">
14       <summary>Converts an array of encoded bytes to UTF-16 encoded characters and stores the result in a character array.</summary>
15       <param name="bytes">A byte array to convert.</param>
16       <param name="byteIndex">The first element of bytes to convert.</param>
17       <param name="byteCount">The number of elements of bytes to convert.</param>
18       <param name="chars">An array to store the converted characters.</param>
19       <param name="charIndex">The first element of chars in which data is stored.</param>
20       <param name="charCount">The maximum number of elements of chars to use in the conversion.</param>
21       <param name="flush">true to indicate that no further data is to be converted; otherwise, false.</param>
22       <param name="bytesUsed">When this method returns, contains the number of bytes that were used in the conversion. This parameter is passed uninitialized.</param>
23       <param name="charsUsed">When this method returns, contains the number of characters from chars that were produced by the conversion. This parameter is passed uninitialized.</param>
24       <param name="completed">When this method returns, contains true if all the characters specified by byteCount were converted; otherwise, false. This parameter is passed uninitialized.</param>
25       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> or <paramref name="bytes">bytes</paramref> is null (Nothing).</exception>
26       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="charIndex">charIndex</paramref>, <paramref name="charCount">charCount</paramref>, <paramref name="byteIndex">byteIndex</paramref>, or <paramref name="byteCount">byteCount</paramref> is less than zero.   -or-   The length of <paramref name="chars">chars</paramref> - <paramref name="charIndex">charIndex</paramref> is less than <paramref name="charCount">charCount</paramref>.   -or-   The length of <paramref name="bytes">bytes</paramref> - <paramref name="byteIndex">byteIndex</paramref> is less than <paramref name="byteCount">byteCount</paramref>.</exception>
27       <exception cref="T:System.ArgumentException">The output buffer is too small to contain any of the converted input. The output buffer should be greater than or equal to the size indicated by the <see cref="Overload:System.Text.Decoder.GetCharCount"></see> method.</exception>
28       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Decoder.Fallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
29     </member>
30     <member name="P:System.Text.Decoder.Fallback">
31       <summary>Gets or sets a <see cref="T:System.Text.DecoderFallback"></see> object for the current <see cref="T:System.Text.Decoder"></see> object.</summary>
32       <returns>A <see cref="T:System.Text.DecoderFallback"></see> object.</returns>
33       <exception cref="T:System.ArgumentNullException">The value in a set operation is null (Nothing).</exception>
34       <exception cref="T:System.ArgumentException">A new value cannot be assigned in a set operation because the current <see cref="T:System.Text.DecoderFallbackBuffer"></see> object contains data that has not been decoded yet.</exception>
35     </member>
36     <member name="P:System.Text.Decoder.FallbackBuffer">
37       <summary>Gets the <see cref="T:System.Text.DecoderFallbackBuffer"></see> object associated with the current <see cref="T:System.Text.Decoder"></see> object.</summary>
38       <returns>A <see cref="T:System.Text.DecoderFallbackBuffer"></see> object.</returns>
39     </member>
40     <member name="M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32)">
41       <summary>When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array.</summary>
42       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
43       <param name="index">The index of the first byte to decode.</param>
44       <param name="count">The number of bytes to decode.</param>
45       <returns>The number of characters produced by decoding the specified sequence of bytes and any bytes in the internal buffer.</returns>
46       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null (Nothing).</exception>
47       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.</exception>
48       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Decoder.Fallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
49     </member>
50     <member name="M:System.Text.Decoder.GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean)">
51       <summary>When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. A parameter indicates whether to clear the internal state of the decoder after the calculation.</summary>
52       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
53       <param name="index">The index of the first byte to decode.</param>
54       <param name="count">The number of bytes to decode.</param>
55       <param name="flush">true to simulate clearing the internal state of the encoder after the calculation; otherwise, false.</param>
56       <returns>The number of characters produced by decoding the specified sequence of bytes and any bytes in the internal buffer.</returns>
57       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null (Nothing).</exception>
58       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.</exception>
59       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Decoder.Fallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
60     </member>
61     <member name="M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)">
62       <summary>When overridden in a derived class, decodes a sequence of bytes from the specified byte array and any bytes in the internal buffer into the specified character array.</summary>
63       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
64       <param name="byteIndex">The index of the first byte to decode.</param>
65       <param name="byteCount">The number of bytes to decode.</param>
66       <param name="chars">The character array to contain the resulting set of characters.</param>
67       <param name="charIndex">The index at which to start writing the resulting set of characters.</param>
68       <returns>The actual number of characters written into <paramref name="chars">chars</paramref>.</returns>
69       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null (Nothing).   -or-  <paramref name="chars">chars</paramref> is null (Nothing).</exception>
70       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteIndex">byteIndex</paramref> or <paramref name="byteCount">byteCount</paramref> or <paramref name="charIndex">charIndex</paramref> is less than zero.   -or-  <paramref name="byteindex">byteindex</paramref> and <paramref name="byteCount">byteCount</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.   -or-  <paramref name="charIndex">charIndex</paramref> is not a valid index in <paramref name="chars">chars</paramref>.</exception>
71       <exception cref="T:System.ArgumentException"><paramref name="chars">chars</paramref> does not have enough capacity from <paramref name="charIndex">charIndex</paramref> to the end of the array to accommodate the resulting characters.</exception>
72       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Decoder.Fallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
73     </member>
74     <member name="M:System.Text.Decoder.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean)">
75       <summary>When overridden in a derived class, decodes a sequence of bytes from the specified byte array and any bytes in the internal buffer into the specified character array. A parameter indicates whether to clear the internal state of the decoder after the conversion.</summary>
76       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
77       <param name="byteIndex">The index of the first byte to decode.</param>
78       <param name="byteCount">The number of bytes to decode.</param>
79       <param name="chars">The character array to contain the resulting set of characters.</param>
80       <param name="charIndex">The index at which to start writing the resulting set of characters.</param>
81       <param name="flush">true to clear the internal state of the decoder after the conversion; otherwise, false.</param>
82       <returns>The actual number of characters written into the <paramref name="chars">chars</paramref> parameter.</returns>
83       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null (Nothing).   -or-  <paramref name="chars">chars</paramref> is null (Nothing).</exception>
84       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteIndex">byteIndex</paramref> or <paramref name="byteCount">byteCount</paramref> or <paramref name="charIndex">charIndex</paramref> is less than zero.   -or-  <paramref name="byteindex">byteindex</paramref> and <paramref name="byteCount">byteCount</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.   -or-  <paramref name="charIndex">charIndex</paramref> is not a valid index in <paramref name="chars">chars</paramref>.</exception>
85       <exception cref="T:System.ArgumentException"><paramref name="chars">chars</paramref> does not have enough capacity from <paramref name="charIndex">charIndex</paramref> to the end of the array to accommodate the resulting characters.</exception>
86       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Decoder.Fallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
87     </member>
88     <member name="M:System.Text.Decoder.Reset">
89       <summary>When overridden in a derived class, sets the decoder back to its initial state.</summary>
90     </member>
91     <member name="T:System.Text.DecoderExceptionFallback">
92       <summary>Provides a failure-handling mechanism, called a fallback, for an encoded input byte sequence that cannot be converted to an input character. The fallback throws an exception instead of decoding the input byte sequence. This class cannot be inherited.</summary>
93     </member>
94     <member name="M:System.Text.DecoderExceptionFallback.#ctor">
95       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderExceptionFallback"></see> class.</summary>
96     </member>
97     <member name="M:System.Text.DecoderExceptionFallback.CreateFallbackBuffer">
98       <summary>Returns a decoder fallback buffer that throws an exception if it cannot convert a sequence of bytes to a character.</summary>
99       <returns>A decoder fallback buffer that throws an exception when it cannot decode a byte sequence.</returns>
100     </member>
101     <member name="M:System.Text.DecoderExceptionFallback.Equals(System.Object)">
102       <summary>Indicates whether the current <see cref="T:System.Text.DecoderExceptionFallback"></see> object and a specified object are equal.</summary>
103       <param name="value">An object that derives from the <see cref="T:System.Text.DecoderExceptionFallback"></see> class.</param>
104       <returns>true if <paramref name="value">value</paramref> is not null and is a <see cref="T:System.Text.DecoderExceptionFallback"></see> object; otherwise, false.</returns>
105     </member>
106     <member name="M:System.Text.DecoderExceptionFallback.GetHashCode">
107       <summary>Retrieves the hash code for this instance.</summary>
108       <returns>The return value is always the same arbitrary value, and has no special significance.</returns>
109     </member>
110     <member name="P:System.Text.DecoderExceptionFallback.MaxCharCount">
111       <summary>Gets the maximum number of characters this instance can return.</summary>
112       <returns>The return value is always zero.</returns>
113     </member>
114     <member name="T:System.Text.DecoderFallback">
115       <summary>Provides a failure-handling mechanism, called a fallback, for an encoded input byte sequence that cannot be converted to an output character.</summary>
116     </member>
117     <member name="M:System.Text.DecoderFallback.#ctor">
118       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderFallback"></see> class.</summary>
119     </member>
120     <member name="M:System.Text.DecoderFallback.CreateFallbackBuffer">
121       <summary>When overridden in a derived class, initializes a new instance of the <see cref="T:System.Text.DecoderFallbackBuffer"></see> class.</summary>
122       <returns>An object that provides a fallback buffer for a decoder.</returns>
123     </member>
124     <member name="P:System.Text.DecoderFallback.ExceptionFallback">
125       <summary>Gets an object that throws an exception when an input byte sequence cannot be decoded.</summary>
126       <returns>A type derived from the <see cref="T:System.Text.DecoderFallback"></see> class. The default value is a <see cref="T:System.Text.DecoderExceptionFallback"></see> object.</returns>
127     </member>
128     <member name="P:System.Text.DecoderFallback.MaxCharCount">
129       <summary>When overridden in a derived class, gets the maximum number of characters the current <see cref="T:System.Text.DecoderFallback"></see> object can return.</summary>
130       <returns>The maximum number of characters the current <see cref="T:System.Text.DecoderFallback"></see> object can return.</returns>
131     </member>
132     <member name="P:System.Text.DecoderFallback.ReplacementFallback">
133       <summary>Gets an object that outputs a substitute string in place of an input byte sequence that cannot be decoded.</summary>
134       <returns>A type derived from the <see cref="T:System.Text.DecoderFallback"></see> class. The default value is a <see cref="T:System.Text.DecoderReplacementFallback"></see> object that emits the QUESTION MARK character (&quot;?&quot;, U+003F) in place of unknown byte sequences.</returns>
135     </member>
136     <member name="T:System.Text.DecoderFallbackBuffer">
137       <summary>Provides a buffer that allows a fallback handler to return an alternate string to a decoder when it cannot decode an input byte sequence.</summary>
138     </member>
139     <member name="M:System.Text.DecoderFallbackBuffer.#ctor">
140       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackBuffer"></see> class.</summary>
141     </member>
142     <member name="M:System.Text.DecoderFallbackBuffer.Fallback(System.Byte[],System.Int32)">
143       <summary>When overridden in a derived class, prepares the fallback buffer to handle the specified input byte sequence.</summary>
144       <param name="bytesUnknown">An input array of bytes.</param>
145       <param name="index">The index position of a byte in bytesUnknown.</param>
146       <returns>true if the fallback buffer can process <paramref name="bytesUnknown">bytesUnknown</paramref>; false if the fallback buffer ignores <paramref name="bytesUnknown">bytesUnknown</paramref>.</returns>
147     </member>
148     <member name="M:System.Text.DecoderFallbackBuffer.GetNextChar">
149       <summary>When overridden in a derived class, retrieves the next character in the fallback buffer.</summary>
150       <returns>The next character in the fallback buffer.</returns>
151     </member>
152     <member name="M:System.Text.DecoderFallbackBuffer.MovePrevious">
153       <summary>When overridden in a derived class, causes the next call to the <see cref="M:System.Text.DecoderFallbackBuffer.GetNextChar"></see> method to access the data buffer character position that is prior to the current character position.</summary>
154       <returns>true if the <see cref="M:System.Text.DecoderFallbackBuffer.MovePrevious"></see> operation was successful; otherwise, false.</returns>
155     </member>
156     <member name="P:System.Text.DecoderFallbackBuffer.Remaining">
157       <summary>When overridden in a derived class, gets the number of characters in the current <see cref="T:System.Text.DecoderFallbackBuffer"></see> object that remain to be processed.</summary>
158       <returns>The number of characters in the current fallback buffer that have not yet been processed.</returns>
159     </member>
160     <member name="M:System.Text.DecoderFallbackBuffer.Reset">
161       <summary>Initializes all data and state information pertaining to this fallback buffer.</summary>
162     </member>
163     <member name="T:System.Text.DecoderFallbackException">
164       <summary>The exception that is thrown when a decoder fallback operation fails. This class cannot be inherited.</summary>
165     </member>
166     <member name="M:System.Text.DecoderFallbackException.#ctor">
167       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException"></see> class.</summary>
168     </member>
169     <member name="M:System.Text.DecoderFallbackException.#ctor(System.String)">
170       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException"></see> class. A parameter specifies the error message.</summary>
171       <param name="message">An error message.</param>
172     </member>
173     <member name="M:System.Text.DecoderFallbackException.#ctor(System.String,System.Exception)">
174       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException"></see> class. Parameters specify the error message and the inner exception that is the cause of this exception.</summary>
175       <param name="message">An error message.</param>
176       <param name="innerException">The exception that caused this exception.</param>
177     </member>
178     <member name="M:System.Text.DecoderFallbackException.#ctor(System.String,System.Byte[],System.Int32)">
179       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderFallbackException"></see> class. Parameters specify the error message, the array of bytes being decoded, and the index of the byte that cannot be decoded.</summary>
180       <param name="message">An error message.</param>
181       <param name="bytesUnknown">The input byte array.</param>
182       <param name="index">The index position in bytesUnknown of the byte that cannot be decoded.</param>
183     </member>
184     <member name="P:System.Text.DecoderFallbackException.BytesUnknown">
185       <summary>Gets the input byte sequence that caused the exception.</summary>
186       <returns>The input byte array that cannot be decoded.</returns>
187     </member>
188     <member name="P:System.Text.DecoderFallbackException.Index">
189       <summary>Gets the index position in the input byte sequence of the byte that caused the exception.</summary>
190       <returns>The index position in the input byte array of the byte that cannot be decoded. The index position is zero-based.</returns>
191     </member>
192     <member name="T:System.Text.DecoderReplacementFallback">
193       <summary>Provides a failure-handling mechanism, called a fallback, for an encoded input byte sequence that cannot be converted to an output character. The fallback emits a user-specified replacement string instead of a decoded input byte sequence. This class cannot be inherited.</summary>
194     </member>
195     <member name="M:System.Text.DecoderReplacementFallback.#ctor">
196       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderReplacementFallback"></see> class.</summary>
197     </member>
198     <member name="M:System.Text.DecoderReplacementFallback.#ctor(System.String)">
199       <summary>Initializes a new instance of the <see cref="T:System.Text.DecoderReplacementFallback"></see> class using a specified replacement string.</summary>
200       <param name="replacement">A string that is emitted in a decoding operation in place of an input byte sequence that cannot be decoded.</param>
201       <exception cref="T:System.ArgumentNullException"><paramref name="replacement">replacement</paramref> is null.</exception>
202       <exception cref="T:System.ArgumentException"><paramref name="replacement">replacement</paramref> contains an invalid surrogate pair. In other words, the surrogate pair does not consist of one high surrogate component followed by one low surrogate component.</exception>
203     </member>
204     <member name="M:System.Text.DecoderReplacementFallback.CreateFallbackBuffer">
205       <summary>Creates a <see cref="T:System.Text.DecoderFallbackBuffer"></see> object that is initialized with the replacement string of this <see cref="T:System.Text.DecoderReplacementFallback"></see> object.</summary>
206       <returns>A <see cref="T:System.Text.DecoderFallbackBuffer"></see> object that specifies a string to use instead of the original decoding operation input.</returns>
207     </member>
208     <member name="P:System.Text.DecoderReplacementFallback.DefaultString">
209       <summary>Gets the replacement string that is the value of the <see cref="T:System.Text.DecoderReplacementFallback"></see> object.</summary>
210       <returns>A substitute string that is emitted in place of an input byte sequence that cannot be decoded.</returns>
211     </member>
212     <member name="M:System.Text.DecoderReplacementFallback.Equals(System.Object)">
213       <summary>Indicates whether the value of a specified object is equal to the <see cref="T:System.Text.DecoderReplacementFallback"></see> object.</summary>
214       <param name="value">A <see cref="T:System.Text.DecoderReplacementFallback"></see> object.</param>
215       <returns>true if <paramref name="value">value</paramref> is a <see cref="T:System.Text.DecoderReplacementFallback"></see> object having a <see cref="P:System.Text.DecoderReplacementFallback.DefaultString"></see> property that is equal to the <see cref="P:System.Text.DecoderReplacementFallback.DefaultString"></see> property of the current <see cref="T:System.Text.DecoderReplacementFallback"></see> object; otherwise, false.</returns>
216     </member>
217     <member name="M:System.Text.DecoderReplacementFallback.GetHashCode">
218       <summary>Retrieves the hash code for the value of the <see cref="T:System.Text.DecoderReplacementFallback"></see> object.</summary>
219       <returns>The hash code of the value of the object.</returns>
220     </member>
221     <member name="P:System.Text.DecoderReplacementFallback.MaxCharCount">
222       <summary>Gets the number of characters in the replacement string for the <see cref="T:System.Text.DecoderReplacementFallback"></see> object.</summary>
223       <returns>The number of characters in the string that is emitted in place of a byte sequence that cannot be decoded, that is, the length of the string returned by the <see cref="P:System.Text.DecoderReplacementFallback.DefaultString"></see> property.</returns>
224     </member>
225     <member name="T:System.Text.Encoder">
226       <summary>Converts a set of characters into a sequence of bytes.</summary>
227     </member>
228     <member name="M:System.Text.Encoder.#ctor">
229       <summary>Initializes a new instance of the <see cref="T:System.Text.Encoder"></see> class.</summary>
230     </member>
231     <member name="M:System.Text.Encoder.Convert(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@,System.Boolean@)">
232       <summary>Converts an array of Unicode characters to an encoded byte sequence and stores the result in an array of bytes.</summary>
233       <param name="chars">An array of characters to convert.</param>
234       <param name="charIndex">The first element of chars to convert.</param>
235       <param name="charCount">The number of elements of chars to convert.</param>
236       <param name="bytes">An array where the converted bytes are stored.</param>
237       <param name="byteIndex">The first element of bytes in which data is stored.</param>
238       <param name="byteCount">The maximum number of elements of bytes to use in the conversion.</param>
239       <param name="flush">true to indicate no further data is to be converted; otherwise, false.</param>
240       <param name="charsUsed">When this method returns, contains the number of characters from chars that were used in the conversion. This parameter is passed uninitialized.</param>
241       <param name="bytesUsed">When this method returns, contains the number of bytes that were produced by the conversion. This parameter is passed uninitialized.</param>
242       <param name="completed">When this method returns, contains true if all the characters specified by charCount were converted; otherwise, false. This parameter is passed uninitialized.</param>
243       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> or <paramref name="bytes">bytes</paramref> is null (Nothing).</exception>
244       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="charIndex">charIndex</paramref>, <paramref name="charCount">charCount</paramref>, <paramref name="byteIndex">byteIndex</paramref>, or <paramref name="byteCount">byteCount</paramref> is less than zero.   -or-   The length of <paramref name="chars">chars</paramref> - <paramref name="charIndex">charIndex</paramref> is less than <paramref name="charCount">charCount</paramref>.   -or-   The length of <paramref name="bytes">bytes</paramref> - <paramref name="byteIndex">byteIndex</paramref> is less than <paramref name="byteCount">byteCount</paramref>.</exception>
245       <exception cref="T:System.ArgumentException">The output buffer is too small to contain any of the converted input. The output buffer should be greater than or equal to the size indicated by the <see cref="Overload:System.Text.Encoder.GetByteCount"></see> method.</exception>
246       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Encoder.Fallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
247     </member>
248     <member name="P:System.Text.Encoder.Fallback">
249       <summary>Gets or sets a <see cref="T:System.Text.EncoderFallback"></see> object for the current <see cref="T:System.Text.Encoder"></see> object.</summary>
250       <returns>A <see cref="T:System.Text.EncoderFallback"></see> object.</returns>
251       <exception cref="T:System.ArgumentNullException">The value in a set operation is null (Nothing).</exception>
252       <exception cref="T:System.ArgumentException">A new value cannot be assigned in a set operation because the current <see cref="T:System.Text.EncoderFallbackBuffer"></see> object contains data that has not been encoded yet.</exception>
253       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Encoder.Fallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
254     </member>
255     <member name="P:System.Text.Encoder.FallbackBuffer">
256       <summary>Gets the <see cref="T:System.Text.EncoderFallbackBuffer"></see> object associated with the current <see cref="T:System.Text.Encoder"></see> object.</summary>
257       <returns>A <see cref="T:System.Text.EncoderFallbackBuffer"></see> object.</returns>
258     </member>
259     <member name="M:System.Text.Encoder.GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean)">
260       <summary>When overridden in a derived class, calculates the number of bytes produced by encoding a set of characters from the specified character array. A parameter indicates whether to clear the internal state of the encoder after the calculation.</summary>
261       <param name="chars">The character array containing the set of characters to encode.</param>
262       <param name="index">The index of the first character to encode.</param>
263       <param name="count">The number of characters to encode.</param>
264       <param name="flush">true to simulate clearing the internal state of the encoder after the calculation; otherwise, false.</param>
265       <returns>The number of bytes produced by encoding the specified characters and any characters in the internal buffer.</returns>
266       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
267       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="chars">chars</paramref>.</exception>
268       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Encoder.Fallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
269     </member>
270     <member name="M:System.Text.Encoder.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean)">
271       <summary>When overridden in a derived class, encodes a set of characters from the specified character array and any characters in the internal buffer into the specified byte array. A parameter indicates whether to clear the internal state of the encoder after the conversion.</summary>
272       <param name="chars">The character array containing the set of characters to encode.</param>
273       <param name="charIndex">The index of the first character to encode.</param>
274       <param name="charCount">The number of characters to encode.</param>
275       <param name="bytes">The byte array to contain the resulting sequence of bytes.</param>
276       <param name="byteIndex">The index at which to start writing the resulting sequence of bytes.</param>
277       <param name="flush">true to clear the internal state of the encoder after the conversion; otherwise, false.</param>
278       <returns>The actual number of bytes written into <paramref name="bytes">bytes</paramref>.</returns>
279       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null (Nothing).   -or-  <paramref name="bytes">bytes</paramref> is null (Nothing).</exception>
280       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="charIndex">charIndex</paramref> or <paramref name="charCount">charCount</paramref> or <paramref name="byteIndex">byteIndex</paramref> is less than zero.   -or-  <paramref name="charIndex">charIndex</paramref> and <paramref name="charCount">charCount</paramref> do not denote a valid range in <paramref name="chars">chars</paramref>.   -or-  <paramref name="byteIndex">byteIndex</paramref> is not a valid index in <paramref name="bytes">bytes</paramref>.</exception>
281       <exception cref="T:System.ArgumentException"><paramref name="bytes">bytes</paramref> does not have enough capacity from <paramref name="byteIndex">byteIndex</paramref> to the end of the array to accommodate the resulting bytes.</exception>
282       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for fuller explanation)   -and-  <see cref="P:System.Text.Encoder.Fallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
283     </member>
284     <member name="M:System.Text.Encoder.Reset">
285       <summary>When overridden in a derived class, sets the encoder back to its initial state.</summary>
286     </member>
287     <member name="T:System.Text.EncoderExceptionFallback">
288       <summary>Provides a failure-handling mechanism, called a fallback, for an input character that cannot be converted to an output byte sequence. The fallback throws an exception if an input character cannot be converted to an output byte sequence. This class cannot be inherited.</summary>
289     </member>
290     <member name="M:System.Text.EncoderExceptionFallback.#ctor">
291       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderExceptionFallback"></see> class.</summary>
292     </member>
293     <member name="M:System.Text.EncoderExceptionFallback.CreateFallbackBuffer">
294       <summary>Returns an encoder fallback buffer that throws an exception if it cannot convert a character sequence to a byte sequence.</summary>
295       <returns>An encoder fallback buffer that throws an exception when it cannot encode a character sequence.</returns>
296     </member>
297     <member name="M:System.Text.EncoderExceptionFallback.Equals(System.Object)">
298       <summary>Indicates whether the current <see cref="T:System.Text.EncoderExceptionFallback"></see> object and a specified object are equal.</summary>
299       <param name="value">An object that derives from the <see cref="T:System.Text.EncoderExceptionFallback"></see> class.</param>
300       <returns>true if <paramref name="value">value</paramref> is not null (Nothing in Visual Basic .NET) and is a <see cref="T:System.Text.EncoderExceptionFallback"></see> object; otherwise, false.</returns>
301     </member>
302     <member name="M:System.Text.EncoderExceptionFallback.GetHashCode">
303       <summary>Retrieves the hash code for this instance.</summary>
304       <returns>The return value is always the same arbitrary value, and has no special significance.</returns>
305     </member>
306     <member name="P:System.Text.EncoderExceptionFallback.MaxCharCount">
307       <summary>Gets the maximum number of characters this instance can return.</summary>
308       <returns>The return value is always zero.</returns>
309     </member>
310     <member name="T:System.Text.EncoderFallback">
311       <summary>Provides a failure-handling mechanism, called a fallback, for an input character that cannot be converted to an encoded output byte sequence.</summary>
312     </member>
313     <member name="M:System.Text.EncoderFallback.#ctor">
314       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderFallback"></see> class.</summary>
315     </member>
316     <member name="M:System.Text.EncoderFallback.CreateFallbackBuffer">
317       <summary>When overridden in a derived class, initializes a new instance of the <see cref="T:System.Text.EncoderFallbackBuffer"></see> class.</summary>
318       <returns>An object that provides a fallback buffer for an encoder.</returns>
319     </member>
320     <member name="P:System.Text.EncoderFallback.ExceptionFallback">
321       <summary>Gets an object that throws an exception when an input character cannot be encoded.</summary>
322       <returns>A type derived from the <see cref="T:System.Text.EncoderFallback"></see> class. The default value is a <see cref="T:System.Text.EncoderExceptionFallback"></see> object.</returns>
323     </member>
324     <member name="P:System.Text.EncoderFallback.MaxCharCount">
325       <summary>When overridden in a derived class, gets the maximum number of characters the current <see cref="T:System.Text.EncoderFallback"></see> object can return.</summary>
326       <returns>The maximum number of characters the current <see cref="T:System.Text.EncoderFallback"></see> object can return.</returns>
327     </member>
328     <member name="P:System.Text.EncoderFallback.ReplacementFallback">
329       <summary>Gets an object that outputs a substitute string in place of an input character that cannot be encoded.</summary>
330       <returns>A type derived from the <see cref="T:System.Text.EncoderFallback"></see> class. The default value is a <see cref="T:System.Text.EncoderReplacementFallback"></see> object that replaces unknown input characters with the QUESTION MARK character (&quot;?&quot;, U+003F).</returns>
331     </member>
332     <member name="T:System.Text.EncoderFallbackBuffer">
333       <summary>Provides a buffer that allows a fallback handler to return an alternate string to an encoder when it cannot encode an input character.</summary>
334     </member>
335     <member name="M:System.Text.EncoderFallbackBuffer.#ctor">
336       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackBuffer"></see> class.</summary>
337     </member>
338     <member name="M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Int32)">
339       <summary>When overridden in a derived class, prepares the fallback buffer to handle the specified input character.</summary>
340       <param name="charUnknown">An input character.</param>
341       <param name="index">The index position of the character in the input buffer.</param>
342       <returns>true if the fallback buffer can process <paramref name="charUnknown">charUnknown</paramref>; false if the fallback buffer ignores <paramref name="charUnknown">charUnknown</paramref>.</returns>
343     </member>
344     <member name="M:System.Text.EncoderFallbackBuffer.Fallback(System.Char,System.Char,System.Int32)">
345       <summary>When overridden in a derived class, prepares the fallback buffer to handle the specified surrogate pair.</summary>
346       <param name="charUnknownHigh">The high surrogate of the input pair.</param>
347       <param name="charUnknownLow">The low surrogate of the input pair.</param>
348       <param name="index">The index position of the surrogate pair in the input buffer.</param>
349       <returns>true if the fallback buffer can process <paramref name="charUnknownHigh">charUnknownHigh</paramref> and <paramref name="charUnknownLow">charUnknownLow</paramref>; false if the fallback buffer ignores the surrogate pair.</returns>
350     </member>
351     <member name="M:System.Text.EncoderFallbackBuffer.GetNextChar">
352       <summary>When overridden in a derived class, retrieves the next character in the fallback buffer.</summary>
353       <returns>The next character in the fallback buffer.</returns>
354     </member>
355     <member name="M:System.Text.EncoderFallbackBuffer.MovePrevious">
356       <summary>When overridden in a derived class, causes the next call to the <see cref="M:System.Text.EncoderFallbackBuffer.GetNextChar"></see> method to access the data buffer character position that is prior to the current character position.</summary>
357       <returns>true if the <see cref="M:System.Text.EncoderFallbackBuffer.MovePrevious"></see> operation was successful; otherwise, false.</returns>
358     </member>
359     <member name="P:System.Text.EncoderFallbackBuffer.Remaining">
360       <summary>When overridden in a derived class, gets the number of characters in the current <see cref="T:System.Text.EncoderFallbackBuffer"></see> object that remain to be processed.</summary>
361       <returns>The number of characters in the current fallback buffer that have not yet been processed.</returns>
362     </member>
363     <member name="M:System.Text.EncoderFallbackBuffer.Reset">
364       <summary>Initializes all data and state information pertaining to this fallback buffer.</summary>
365     </member>
366     <member name="T:System.Text.EncoderFallbackException">
367       <summary>The exception that is thrown when an encoder fallback operation fails. This class cannot be inherited.</summary>
368     </member>
369     <member name="M:System.Text.EncoderFallbackException.#ctor">
370       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackException"></see> class.</summary>
371     </member>
372     <member name="M:System.Text.EncoderFallbackException.#ctor(System.String)">
373       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackException"></see> class. A parameter specifies the error message.</summary>
374       <param name="message">An error message.</param>
375     </member>
376     <member name="M:System.Text.EncoderFallbackException.#ctor(System.String,System.Exception)">
377       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderFallbackException"></see> class. Parameters specify the error message and the inner exception that is the cause of this exception.</summary>
378       <param name="message">An error message.</param>
379       <param name="innerException">The exception that caused this exception.</param>
380     </member>
381     <member name="P:System.Text.EncoderFallbackException.CharUnknown">
382       <summary>Gets the input character that caused the exception.</summary>
383       <returns>The character that cannot be encoded.</returns>
384     </member>
385     <member name="P:System.Text.EncoderFallbackException.CharUnknownHigh">
386       <summary>Gets the high component character of the surrogate pair that caused the exception.</summary>
387       <returns>The high component character of the surrogate pair that cannot be encoded.</returns>
388     </member>
389     <member name="P:System.Text.EncoderFallbackException.CharUnknownLow">
390       <summary>Gets the low component character of the surrogate pair that caused the exception.</summary>
391       <returns>The low component character of the surrogate pair that cannot be encoded.</returns>
392     </member>
393     <member name="P:System.Text.EncoderFallbackException.Index">
394       <summary>Gets the index position in the input buffer of the character that caused the exception.</summary>
395       <returns>The index position in the input buffer of the character that cannot be encoded.</returns>
396     </member>
397     <member name="M:System.Text.EncoderFallbackException.IsUnknownSurrogate">
398       <summary>Indicates whether the input that caused the exception is a surrogate pair.</summary>
399       <returns>true if the input was a surrogate pair; otherwise, false.</returns>
400     </member>
401     <member name="T:System.Text.EncoderReplacementFallback">
402       <summary>Provides a failure handling mechanism, called a fallback, for an input character that cannot be converted to an output byte sequence. The fallback uses a user-specified replacement string instead of the original input character. This class cannot be inherited.</summary>
403     </member>
404     <member name="M:System.Text.EncoderReplacementFallback.#ctor">
405       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderReplacementFallback"></see> class.</summary>
406     </member>
407     <member name="M:System.Text.EncoderReplacementFallback.#ctor(System.String)">
408       <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderReplacementFallback"></see> class using a specified replacement string.</summary>
409       <param name="replacement">A string that is converted in an encoding operation in place of an input character that cannot be encoded.</param>
410       <exception cref="T:System.ArgumentNullException"><paramref name="replacement">replacement</paramref> is null.</exception>
411       <exception cref="T:System.ArgumentException"><paramref name="replacement">replacement</paramref> contains an invalid surrogate pair. In other words, the surrogate does not consist of one high surrogate component followed by one low surrogate component.</exception>
412     </member>
413     <member name="M:System.Text.EncoderReplacementFallback.CreateFallbackBuffer">
414       <summary>Creates a <see cref="T:System.Text.EncoderFallbackBuffer"></see> object that is initialized with the replacement string of this <see cref="T:System.Text.EncoderReplacementFallback"></see> object.</summary>
415       <returns>A <see cref="T:System.Text.EncoderFallbackBuffer"></see> object equal to this <see cref="T:System.Text.EncoderReplacementFallback"></see> object.</returns>
416     </member>
417     <member name="P:System.Text.EncoderReplacementFallback.DefaultString">
418       <summary>Gets the replacement string that is the value of the <see cref="T:System.Text.EncoderReplacementFallback"></see> object.</summary>
419       <returns>A substitute string that is used in place of an input character that cannot be encoded.</returns>
420     </member>
421     <member name="M:System.Text.EncoderReplacementFallback.Equals(System.Object)">
422       <summary>Indicates whether the value of a specified object is equal to the <see cref="T:System.Text.EncoderReplacementFallback"></see> object.</summary>
423       <param name="value">A <see cref="T:System.Text.EncoderReplacementFallback"></see> object.</param>
424       <returns>true if the <paramref name="value">value</paramref> parameter specifies an <see cref="T:System.Text.EncoderReplacementFallback"></see> object and the replacement string of that object is equal to the replacement string of this <see cref="T:System.Text.EncoderReplacementFallback"></see> object; otherwise, false.</returns>
425     </member>
426     <member name="M:System.Text.EncoderReplacementFallback.GetHashCode">
427       <summary>Retrieves the hash code for the value of the <see cref="T:System.Text.EncoderReplacementFallback"></see> object.</summary>
428       <returns>The hash code of the value of the object.</returns>
429     </member>
430     <member name="P:System.Text.EncoderReplacementFallback.MaxCharCount">
431       <summary>Gets the number of characters in the replacement string for the <see cref="T:System.Text.EncoderReplacementFallback"></see> object.</summary>
432       <returns>The number of characters in the string used in place of an input character that cannot be encoded.</returns>
433     </member>
434     <member name="T:System.Text.Encoding">
435       <summary>Represents a character encoding.</summary>
436     </member>
437     <member name="M:System.Text.Encoding.#ctor">
438       <summary>Initializes a new instance of the <see cref="T:System.Text.Encoding"></see> class.</summary>
439     </member>
440     <member name="M:System.Text.Encoding.#ctor(System.Int32)">
441       <summary>Initializes a new instance of the <see cref="T:System.Text.Encoding"></see> class that corresponds to the specified code page.</summary>
442       <param name="codePage">The code page identifier of the preferred encoding.   -or-   0, to use the default encoding.</param>
443       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="codePage">codePage</paramref> is less than zero.</exception>
444     </member>
445     <member name="M:System.Text.Encoding.#ctor(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback)">
446       <summary>Initializes a new instance of the <see cref="T:System.Text.Encoding"></see> class that corresponds to the specified code page with the specified encoder and decoder fallback strategies.</summary>
447       <param name="codePage">The encoding code page identifier.</param>
448       <param name="encoderFallback">An object that provides an error-handling procedure when a character cannot be encoded with the current encoding.</param>
449       <param name="decoderFallback">An object that provides an error-handling procedure when a byte sequence cannot be decoded with the current encoding.</param>
450       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="codePage">codePage</paramref> is less than zero.</exception>
451     </member>
452     <member name="P:System.Text.Encoding.ASCII">
453       <summary>Gets an encoding for the ASCII (7-bit) character set.</summary>
454       <returns>An  encoding for the ASCII (7-bit) character set.</returns>
455     </member>
456     <member name="P:System.Text.Encoding.BigEndianUnicode">
457       <summary>Gets an encoding for the UTF-16 format that uses the big endian byte order.</summary>
458       <returns>An encoding object for the UTF-16 format that uses the big endian byte order.</returns>
459     </member>
460     <member name="M:System.Text.Encoding.Clone">
461       <summary>When overridden in a derived class, creates a shallow copy of the current <see cref="T:System.Text.Encoding"></see> object.</summary>
462       <returns>A copy of the current <see cref="T:System.Text.Encoding"></see> object.</returns>
463     </member>
464     <member name="P:System.Text.Encoding.CodePage">
465       <summary>When overridden in a derived class, gets the code page identifier of the current <see cref="T:System.Text.Encoding"></see>.</summary>
466       <returns>The code page identifier of the current <see cref="T:System.Text.Encoding"></see>.</returns>
467     </member>
468     <member name="M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[],System.Int32,System.Int32)">
469       <summary>Converts a range of bytes in a byte array from one encoding to another.</summary>
470       <param name="srcEncoding">The encoding of the source array, bytes.</param>
471       <param name="dstEncoding">The encoding of the output array.</param>
472       <param name="bytes">The array of bytes to convert.</param>
473       <param name="index">The index of the first element of bytes to convert.</param>
474       <param name="count">The number of bytes to convert.</param>
475       <returns>An array of type <see cref="T:System.Byte"></see> containing the result of converting a range of bytes in <paramref name="bytes">bytes</paramref> from <paramref name="srcEncoding">srcEncoding</paramref> to <paramref name="dstEncoding">dstEncoding</paramref>.</returns>
476       <exception cref="T:System.ArgumentNullException"><paramref name="srcEncoding">srcEncoding</paramref> is null.   -or-  <paramref name="dstEncoding">dstEncoding</paramref> is null.   -or-  <paramref name="bytes">bytes</paramref> is null.</exception>
477       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not specify a valid range in the byte array.</exception>
478       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  srcEncoding.<see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
479       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  dstEncoding.<see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
480     </member>
481     <member name="M:System.Text.Encoding.Convert(System.Text.Encoding,System.Text.Encoding,System.Byte[])">
482       <summary>Converts an entire byte array from one encoding to another.</summary>
483       <param name="srcEncoding">The encoding format of bytes.</param>
484       <param name="dstEncoding">The target encoding format.</param>
485       <param name="bytes">The bytes to convert.</param>
486       <returns>An array of type <see cref="T:System.Byte"></see> containing the results of converting <paramref name="bytes">bytes</paramref> from <paramref name="srcEncoding">srcEncoding</paramref> to <paramref name="dstEncoding">dstEncoding</paramref>.</returns>
487       <exception cref="T:System.ArgumentNullException"><paramref name="srcEncoding">srcEncoding</paramref> is null.   -or-  <paramref name="dstEncoding">dstEncoding</paramref> is null.   -or-  <paramref name="bytes">bytes</paramref> is null.</exception>
488       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  srcEncoding.<see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
489       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  dstEncoding.<see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
490     </member>
491     <member name="P:System.Text.Encoding.DecoderFallback">
492       <summary>Gets or sets the <see cref="T:System.Text.DecoderFallback"></see> object for the current <see cref="T:System.Text.Encoding"></see> object.</summary>
493       <returns>The decoder fallback object for the current <see cref="T:System.Text.Encoding"></see> object.</returns>
494       <exception cref="T:System.ArgumentNullException">The value in a set operation is null.</exception>
495       <exception cref="T:System.InvalidOperationException">A value cannot be assigned in a set operation because the current <see cref="T:System.Text.Encoding"></see> object is read-only.</exception>
496     </member>
497     <member name="P:System.Text.Encoding.EncoderFallback">
498       <summary>Gets or sets the <see cref="T:System.Text.EncoderFallback"></see> object for the current <see cref="T:System.Text.Encoding"></see> object.</summary>
499       <returns>The encoder fallback object for the current <see cref="T:System.Text.Encoding"></see> object.</returns>
500       <exception cref="T:System.ArgumentNullException">The value in a set operation is null.</exception>
501       <exception cref="T:System.InvalidOperationException">A value cannot be assigned in a set operation because the current <see cref="T:System.Text.Encoding"></see> object is read-only.</exception>
502     </member>
503     <member name="P:System.Text.Encoding.EncodingName">
504       <summary>When overridden in a derived class, gets the human-readable description of the current encoding.</summary>
505       <returns>The human-readable description of the current <see cref="T:System.Text.Encoding"></see>.</returns>
506     </member>
507     <member name="M:System.Text.Encoding.Equals(System.Object)">
508       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current instance.</summary>
509       <param name="value">The <see cref="T:System.Object"></see> to compare with the current instance.</param>
510       <returns>true if <paramref name="value">value</paramref> is an instance of <see cref="T:System.Text.Encoding"></see> and is equal to the current instance; otherwise, false.</returns>
511     </member>
512     <member name="M:System.Text.Encoding.GetByteCount(System.Char[],System.Int32,System.Int32)">
513       <summary>When overridden in a derived class, calculates the number of bytes produced by encoding a set of characters from the specified character array.</summary>
514       <param name="chars">The character array containing the set of characters to encode.</param>
515       <param name="index">The index of the first character to encode.</param>
516       <param name="count">The number of characters to encode.</param>
517       <returns>The number of bytes produced by encoding the specified characters.</returns>
518       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
519       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="chars">chars</paramref>.</exception>
520       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
521     </member>
522     <member name="M:System.Text.Encoding.GetByteCount(System.Char[])">
523       <summary>When overridden in a derived class, calculates the number of bytes produced by encoding all the characters in the specified character array.</summary>
524       <param name="chars">The character array containing the characters to encode.</param>
525       <returns>The number of bytes produced by encoding all the characters in the specified character array.</returns>
526       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
527       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
528     </member>
529     <member name="M:System.Text.Encoding.GetByteCount(System.String)">
530       <summary>When overridden in a derived class, calculates the number of bytes produced by encoding the characters in the specified string.</summary>
531       <param name="s">The string containing the set of characters to encode.</param>
532       <returns>The number of bytes produced by encoding the specified characters.</returns>
533       <exception cref="T:System.ArgumentNullException"><paramref name="s">s</paramref> is null.</exception>
534       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
535     </member>
536     <member name="M:System.Text.Encoding.GetByteCount(System.Char*,System.Int32)">
537       <summary>When overridden in a derived class, calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer.</summary>
538       <param name="chars">A pointer to the first character to encode.</param>
539       <param name="count">The number of characters to encode.</param>
540       <returns>The number of bytes produced by encoding the specified characters.</returns>
541       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
542       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="count">count</paramref> is less than zero.</exception>
543       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
544     </member>
545     <member name="M:System.Text.Encoding.GetBytes(System.Char[])">
546       <summary>When overridden in a derived class, encodes all the characters in the specified character array into a sequence of bytes.</summary>
547       <param name="chars">The character array containing the characters to encode.</param>
548       <returns>A byte array containing the results of encoding the specified set of characters.</returns>
549       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
550       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
551     </member>
552     <member name="M:System.Text.Encoding.GetBytes(System.String)">
553       <summary>When overridden in a derived class, encodes all the characters in the specified string into a sequence of bytes.</summary>
554       <param name="s">The string containing the characters to encode.</param>
555       <returns>A byte array containing the results of encoding the specified set of characters.</returns>
556       <exception cref="T:System.ArgumentNullException"><paramref name="s">s</paramref> is null.</exception>
557       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
558     </member>
559     <member name="M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32)">
560       <summary>When overridden in a derived class, encodes a set of characters from the specified character array into a sequence of bytes.</summary>
561       <param name="chars">The character array containing the set of characters to encode.</param>
562       <param name="index">The index of the first character to encode.</param>
563       <param name="count">The number of characters to encode.</param>
564       <returns>A byte array containing the results of encoding the specified set of characters.</returns>
565       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.</exception>
566       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="chars">chars</paramref>.</exception>
567       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
568     </member>
569     <member name="M:System.Text.Encoding.GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)">
570       <summary>When overridden in a derived class, encodes a set of characters starting at the specified character pointer into a sequence of bytes that are stored starting at the specified byte pointer.</summary>
571       <param name="chars">A pointer to the first character to encode.</param>
572       <param name="charCount">The number of characters to encode.</param>
573       <param name="bytes">A pointer to the location at which to start writing the resulting sequence of bytes.</param>
574       <param name="byteCount">The maximum number of bytes to write.</param>
575       <returns>The actual number of bytes written at the location indicated by the <paramref name="bytes">bytes</paramref> parameter.</returns>
576       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.   -or-  <paramref name="bytes">bytes</paramref> is null.</exception>
577       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="charCount">charCount</paramref> or <paramref name="byteCount">byteCount</paramref> is less than zero.</exception>
578       <exception cref="T:System.ArgumentException"><paramref name="byteCount">byteCount</paramref> is less than the resulting number of bytes.</exception>
579       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
580     </member>
581     <member name="M:System.Text.Encoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)">
582       <summary>When overridden in a derived class, encodes a set of characters from the specified character array into the specified byte array.</summary>
583       <param name="chars">The character array containing the set of characters to encode.</param>
584       <param name="charIndex">The index of the first character to encode.</param>
585       <param name="charCount">The number of characters to encode.</param>
586       <param name="bytes">The byte array to contain the resulting sequence of bytes.</param>
587       <param name="byteIndex">The index at which to start writing the resulting sequence of bytes.</param>
588       <returns>The actual number of bytes written into <paramref name="bytes">bytes</paramref>.</returns>
589       <exception cref="T:System.ArgumentNullException"><paramref name="chars">chars</paramref> is null.   -or-  <paramref name="bytes">bytes</paramref> is null.</exception>
590       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="charIndex">charIndex</paramref> or <paramref name="charCount">charCount</paramref> or <paramref name="byteIndex">byteIndex</paramref> is less than zero.   -or-  <paramref name="charIndex">charIndex</paramref> and <paramref name="charCount">charCount</paramref> do not denote a valid range in <paramref name="chars">chars</paramref>.   -or-  <paramref name="byteIndex">byteIndex</paramref> is not a valid index in <paramref name="bytes">bytes</paramref>.</exception>
591       <exception cref="T:System.ArgumentException"><paramref name="bytes">bytes</paramref> does not have enough capacity from <paramref name="byteIndex">byteIndex</paramref> to the end of the array to accommodate the resulting bytes.</exception>
592       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
593     </member>
594     <member name="M:System.Text.Encoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)">
595       <summary>When overridden in a derived class, encodes a set of characters from the specified string into the specified byte array.</summary>
596       <param name="s">The string containing the set of characters to encode.</param>
597       <param name="charIndex">The index of the first character to encode.</param>
598       <param name="charCount">The number of characters to encode.</param>
599       <param name="bytes">The byte array to contain the resulting sequence of bytes.</param>
600       <param name="byteIndex">The index at which to start writing the resulting sequence of bytes.</param>
601       <returns>The actual number of bytes written into <paramref name="bytes">bytes</paramref>.</returns>
602       <exception cref="T:System.ArgumentNullException"><paramref name="s">s</paramref> is null.   -or-  <paramref name="bytes">bytes</paramref> is null.</exception>
603       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="charIndex">charIndex</paramref> or <paramref name="charCount">charCount</paramref> or <paramref name="byteIndex">byteIndex</paramref> is less than zero.   -or-  <paramref name="charIndex">charIndex</paramref> and <paramref name="charCount">charCount</paramref> do not denote a valid range in <paramref name="chars">chars</paramref>.   -or-  <paramref name="byteIndex">byteIndex</paramref> is not a valid index in <paramref name="bytes">bytes</paramref>.</exception>
604       <exception cref="T:System.ArgumentException"><paramref name="bytes">bytes</paramref> does not have enough capacity from <paramref name="byteIndex">byteIndex</paramref> to the end of the array to accommodate the resulting bytes.</exception>
605       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
606     </member>
607     <member name="M:System.Text.Encoding.GetCharCount(System.Byte[])">
608       <summary>When overridden in a derived class, calculates the number of characters produced by decoding all the bytes in the specified byte array.</summary>
609       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
610       <returns>The number of characters produced by decoding the specified sequence of bytes.</returns>
611       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
612       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
613     </member>
614     <member name="M:System.Text.Encoding.GetCharCount(System.Byte*,System.Int32)">
615       <summary>When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer.</summary>
616       <param name="bytes">A pointer to the first byte to decode.</param>
617       <param name="count">The number of bytes to decode.</param>
618       <returns>The number of characters produced by decoding the specified sequence of bytes.</returns>
619       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
620       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="count">count</paramref> is less than zero.</exception>
621       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
622     </member>
623     <member name="M:System.Text.Encoding.GetCharCount(System.Byte[],System.Int32,System.Int32)">
624       <summary>When overridden in a derived class, calculates the number of characters produced by decoding a sequence of bytes from the specified byte array.</summary>
625       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
626       <param name="index">The index of the first byte to decode.</param>
627       <param name="count">The number of bytes to decode.</param>
628       <returns>The number of characters produced by decoding the specified sequence of bytes.</returns>
629       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
630       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.</exception>
631       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
632     </member>
633     <member name="M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)">
634       <summary>When overridden in a derived class, decodes a sequence of bytes from the specified byte array into the specified character array.</summary>
635       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
636       <param name="byteIndex">The index of the first byte to decode.</param>
637       <param name="byteCount">The number of bytes to decode.</param>
638       <param name="chars">The character array to contain the resulting set of characters.</param>
639       <param name="charIndex">The index at which to start writing the resulting set of characters.</param>
640       <returns>The actual number of characters written into <paramref name="chars">chars</paramref>.</returns>
641       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.   -or-  <paramref name="chars">chars</paramref> is null.</exception>
642       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteIndex">byteIndex</paramref> or <paramref name="byteCount">byteCount</paramref> or <paramref name="charIndex">charIndex</paramref> is less than zero.   -or-  <paramref name="byteindex">byteindex</paramref> and <paramref name="byteCount">byteCount</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.   -or-  <paramref name="charIndex">charIndex</paramref> is not a valid index in <paramref name="chars">chars</paramref>.</exception>
643       <exception cref="T:System.ArgumentException"><paramref name="chars">chars</paramref> does not have enough capacity from <paramref name="charIndex">charIndex</paramref> to the end of the array to accommodate the resulting characters.</exception>
644       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
645     </member>
646     <member name="M:System.Text.Encoding.GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)">
647       <summary>When overridden in a derived class, decodes a sequence of bytes starting at the specified byte pointer into a set of characters that are stored starting at the specified character pointer.</summary>
648       <param name="bytes">A pointer to the first byte to decode.</param>
649       <param name="byteCount">The number of bytes to decode.</param>
650       <param name="chars">A pointer to the location at which to start writing the resulting set of characters.</param>
651       <param name="charCount">The maximum number of characters to write.</param>
652       <returns>The actual number of characters written at the location indicated by the <paramref name="chars">chars</paramref> parameter.</returns>
653       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.   -or-  <paramref name="chars">chars</paramref> is null.</exception>
654       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount">byteCount</paramref> or <paramref name="charCount">charCount</paramref> is less than zero.</exception>
655       <exception cref="T:System.ArgumentException"><paramref name="charCount">charCount</paramref> is less than the resulting number of characters.</exception>
656       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
657     </member>
658     <member name="M:System.Text.Encoding.GetChars(System.Byte[],System.Int32,System.Int32)">
659       <summary>When overridden in a derived class, decodes a sequence of bytes from the specified byte array into a set of characters.</summary>
660       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
661       <param name="index">The index of the first byte to decode.</param>
662       <param name="count">The number of bytes to decode.</param>
663       <returns>A character array containing the results of decoding the specified sequence of bytes.</returns>
664       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
665       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.</exception>
666       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
667     </member>
668     <member name="M:System.Text.Encoding.GetChars(System.Byte[])">
669       <summary>When overridden in a derived class, decodes all the bytes in the specified byte array into a set of characters.</summary>
670       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
671       <returns>A character array containing the results of decoding the specified sequence of bytes.</returns>
672       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
673       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
674     </member>
675     <member name="M:System.Text.Encoding.GetDecoder">
676       <summary>When overridden in a derived class, obtains a decoder that converts an encoded sequence of bytes into a sequence of characters.</summary>
677       <returns>A <see cref="T:System.Text.Decoder"></see> that converts an encoded sequence of bytes into a sequence of characters.</returns>
678     </member>
679     <member name="M:System.Text.Encoding.GetEncoder">
680       <summary>When overridden in a derived class, obtains an encoder that converts a sequence of Unicode characters into an encoded sequence of bytes.</summary>
681       <returns>A <see cref="T:System.Text.Encoder"></see> that converts a sequence of Unicode characters into an encoded sequence of bytes.</returns>
682     </member>
683     <member name="M:System.Text.Encoding.GetEncoding(System.Int32)">
684       <summary>Returns the encoding associated with the specified code page identifier.</summary>
685       <param name="codepage">The code page identifier of the preferred encoding. Possible values are listed in the Code Page column of the table that appears in the <see cref="T:System.Text.Encoding"></see> class topic.   -or-   0 (zero), to use the default encoding.</param>
686       <returns>The encoding that is associated with the specified code page.</returns>
687       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="codepage">codepage</paramref> is less than zero or greater than 65535.</exception>
688       <exception cref="T:System.ArgumentException"><paramref name="codepage">codepage</paramref> is not supported by the underlying platform.</exception>
689       <exception cref="T:System.NotSupportedException"><paramref name="codepage">codepage</paramref> is not supported by the underlying platform.</exception>
690     </member>
691     <member name="M:System.Text.Encoding.GetEncoding(System.String)">
692       <summary>Returns the encoding associated with the specified code page name.</summary>
693       <param name="name">The code page name of the preferred encoding. Any value returned by the <see cref="P:System.Text.Encoding.WebName"></see> property is valid. Possible values are listed in the Name column of the table that appears in the <see cref="T:System.Text.Encoding"></see> class topic.</param>
694       <returns>The encoding  associated with the specified code page.</returns>
695       <exception cref="T:System.ArgumentException"><paramref name="name">name</paramref> is not a valid code page name.   -or-   The code page indicated by <paramref name="name">name</paramref> is not supported by the underlying platform.</exception>
696     </member>
697     <member name="M:System.Text.Encoding.GetEncoding(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback)">
698       <summary>Returns the encoding associated with the specified code page identifier. Parameters specify an error handler for characters that cannot be encoded and byte sequences that cannot be decoded.</summary>
699       <param name="codepage">The code page identifier of the preferred encoding. Possible values are listed in the Code Page column of the table that appears in the <see cref="T:System.Text.Encoding"></see> class topic.   -or-   0 (zero), to use the default encoding.</param>
700       <param name="encoderFallback">An object that provides an error-handling procedure when a character cannot be encoded with the current encoding.</param>
701       <param name="decoderFallback">An object that provides an error-handling procedure when a byte sequence cannot be decoded with the current encoding.</param>
702       <returns>The encoding that is associated with the specified code page.</returns>
703       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="codepage">codepage</paramref> is less than zero or greater than 65535.</exception>
704       <exception cref="T:System.ArgumentException"><paramref name="codepage">codepage</paramref> is not supported by the underlying platform.</exception>
705       <exception cref="T:System.NotSupportedException"><paramref name="codepage">codepage</paramref> is not supported by the underlying platform.</exception>
706     </member>
707     <member name="M:System.Text.Encoding.GetEncoding(System.String,System.Text.EncoderFallback,System.Text.DecoderFallback)">
708       <summary>Returns the encoding associated with the specified code page name. Parameters specify an error handler for characters that cannot be encoded and byte sequences that cannot be decoded.</summary>
709       <param name="name">The code page name of the preferred encoding. Any value returned by the <see cref="P:System.Text.Encoding.WebName"></see> property is valid. Possible values are listed in the Name column of the table that appears in the <see cref="T:System.Text.Encoding"></see> class topic.</param>
710       <param name="encoderFallback">An object that provides an error-handling procedure when a character cannot be encoded with the current encoding.</param>
711       <param name="decoderFallback">An object that provides an error-handling procedure when a byte sequence cannot be decoded with the current encoding.</param>
712       <returns>The encoding that is associated with the specified code page.</returns>
713       <exception cref="T:System.ArgumentException"><paramref name="name">name</paramref> is not a valid code page name.   -or-   The code page indicated by <paramref name="name">name</paramref> is not supported by the underlying platform.</exception>
714     </member>
715     <member name="M:System.Text.Encoding.GetHashCode">
716       <summary>Returns the hash code for the current instance.</summary>
717       <returns>The hash code for the current instance.</returns>
718     </member>
719     <member name="M:System.Text.Encoding.GetMaxByteCount(System.Int32)">
720       <summary>When overridden in a derived class, calculates the maximum number of bytes produced by encoding the specified number of characters.</summary>
721       <param name="charCount">The number of characters to encode.</param>
722       <returns>The maximum number of bytes produced by encoding the specified number of characters.</returns>
723       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="charCount">charCount</paramref> is less than zero.</exception>
724       <exception cref="T:System.Text.EncoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.EncoderFallback"></see> is set to <see cref="T:System.Text.EncoderExceptionFallback"></see>.</exception>
725     </member>
726     <member name="M:System.Text.Encoding.GetMaxCharCount(System.Int32)">
727       <summary>When overridden in a derived class, calculates the maximum number of characters produced by decoding the specified number of bytes.</summary>
728       <param name="byteCount">The number of bytes to decode.</param>
729       <returns>The maximum number of characters produced by decoding the specified number of bytes.</returns>
730       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount">byteCount</paramref> is less than zero.</exception>
731       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
732     </member>
733     <member name="M:System.Text.Encoding.GetPreamble">
734       <summary>When overridden in a derived class, returns a sequence of bytes that specifies the encoding used.</summary>
735       <returns>A byte array containing a sequence of bytes that specifies the encoding used.   -or-   A byte array of length zero, if a preamble is not required.</returns>
736     </member>
737     <member name="M:System.Text.Encoding.GetString(System.Byte[])">
738       <summary>When overridden in a derived class, decodes all the bytes in the specified byte array into a string.</summary>
739       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
740       <returns>A string that contains the results of decoding the specified sequence of bytes.</returns>
741       <exception cref="T:System.ArgumentException">The byte array contains invalid Unicode code points.</exception>
742       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
743       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
744     </member>
745     <member name="M:System.Text.Encoding.GetString(System.Byte*,System.Int32)">
746       <summary>When overridden in a derived class, decodes a specified number of bytes starting at a specified address into a string.</summary>
747       <param name="bytes">A pointer to a byte array.</param>
748       <param name="byteCount">The number of bytes to decode.</param>
749       <returns>A string that contains the results of decoding the specified sequence of bytes.</returns>
750       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is a null pointer.</exception>
751       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="byteCount">byteCount</paramref> is less than zero.</exception>
752       <exception cref="T:System.Text.DecoderFallbackException">A   fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for a complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
753     </member>
754     <member name="M:System.Text.Encoding.GetString(System.Byte[],System.Int32,System.Int32)">
755       <summary>When overridden in a derived class, decodes a sequence of bytes from the specified byte array into a string.</summary>
756       <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
757       <param name="index">The index of the first byte to decode.</param>
758       <param name="count">The number of bytes to decode.</param>
759       <returns>A string that contains the results of decoding the specified sequence of bytes.</returns>
760       <exception cref="T:System.ArgumentException">The byte array contains invalid Unicode code points.</exception>
761       <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
762       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.   -or-  <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in <paramref name="bytes">bytes</paramref>.</exception>
763       <exception cref="T:System.Text.DecoderFallbackException">A fallback occurred (see <see cref="~/docs/standard/base-types/character-encoding.md">Character Encoding in the .NET Framework</see> for complete explanation)   -and-  <see cref="P:System.Text.Encoding.DecoderFallback"></see> is set to <see cref="T:System.Text.DecoderExceptionFallback"></see>.</exception>
764     </member>
765     <member name="P:System.Text.Encoding.IsSingleByte">
766       <summary>When overridden in a derived class, gets a value indicating whether the current encoding uses single-byte code points.</summary>
767       <returns>true if the current <see cref="T:System.Text.Encoding"></see> uses single-byte code points; otherwise, false.</returns>
768     </member>
769     <member name="M:System.Text.Encoding.RegisterProvider(System.Text.EncodingProvider)">
770       <summary>Registers an encoding provider.</summary>
771       <param name="provider">A subclass of <see cref="T:System.Text.EncodingProvider"></see> that provides access to additional character encodings.</param>
772       <exception cref="T:System.ArgumentNullException"><paramref name="provider">provider</paramref> is null.</exception>
773     </member>
774     <member name="P:System.Text.Encoding.Unicode">
775       <summary>Gets an encoding for the UTF-16 format using the little endian byte order.</summary>
776       <returns>An encoding for the UTF-16 format using the little endian byte order.</returns>
777     </member>
778     <member name="P:System.Text.Encoding.UTF32">
779       <summary>Gets an encoding for the UTF-32 format using the little endian byte order.</summary>
780       <returns>An  encoding object for the UTF-32 format using the little endian byte order.</returns>
781     </member>
782     <member name="P:System.Text.Encoding.UTF7">
783       <summary>Gets an encoding for the UTF-7 format.</summary>
784       <returns>An encoding for the UTF-7 format.</returns>
785     </member>
786     <member name="P:System.Text.Encoding.UTF8">
787       <summary>Gets an encoding for the UTF-8 format.</summary>
788       <returns>An encoding for the UTF-8 format.</returns>
789     </member>
790     <member name="P:System.Text.Encoding.WebName">
791       <summary>When overridden in a derived class, gets the name registered with the Internet Assigned Numbers Authority (IANA) for the current encoding.</summary>
792       <returns>The IANA name for the current <see cref="T:System.Text.Encoding"></see>.</returns>
793     </member>
794     <member name="T:System.Text.EncodingProvider">
795       <summary>Provides the base class for an encoding provider, which supplies encodings that are unavailable on a particular platform.</summary>
796     </member>
797     <member name="M:System.Text.EncodingProvider.#ctor">
798       <summary>Initializes a new instance of the <see cref="T:System.Text.EncodingProvider"></see> class.</summary>
799     </member>
800     <member name="M:System.Text.EncodingProvider.GetEncoding(System.Int32)">
801       <summary>Returns the encoding associated with the specified code page identifier.</summary>
802       <param name="codepage">The code page identifier of the requested encoding.</param>
803       <returns>The encoding that is associated with the specified code page, or null if this <see cref="T:System.Text.EncodingProvider"></see> cannot return a valid encoding that corresponds to <paramref name="codepage">codepage</paramref>.</returns>
804     </member>
805     <member name="M:System.Text.EncodingProvider.GetEncoding(System.String)">
806       <summary>Returns the encoding with the specified name.</summary>
807       <param name="name">The name of the requested encoding.</param>
808       <returns>The encoding that is associated with the specified name, or null if this <see cref="T:System.Text.EncodingProvider"></see> cannot return a valid encoding that corresponds to <paramref name="name">name</paramref>.</returns>
809     </member>
810     <member name="M:System.Text.EncodingProvider.GetEncoding(System.Int32,System.Text.EncoderFallback,System.Text.DecoderFallback)">
811       <summary>Returns the encoding associated with the specified code page identifier. Parameters specify an error handler for characters that cannot be encoded and byte sequences that cannot be decoded.</summary>
812       <param name="codepage">The code page identifier of the requested encoding.</param>
813       <param name="encoderFallback">An object that provides an error-handling procedure when a character cannot be encoded with this encoding.</param>
814       <param name="decoderFallback">An object that provides an error-handling procedure when a byte sequence cannot be decoded with this encoding.</param>
815       <returns>The encoding that is associated with the specified code page, or null if this <see cref="T:System.Text.EncodingProvider"></see> cannot return a valid encoding that corresponds to <paramref name="codepage">codepage</paramref>.</returns>
816     </member>
817     <member name="M:System.Text.EncodingProvider.GetEncoding(System.String,System.Text.EncoderFallback,System.Text.DecoderFallback)">
818       <summary>Returns the encoding associated with the specified name. Parameters specify an error handler for characters that cannot be encoded and byte sequences that cannot be decoded.</summary>
819       <param name="name">The name of the preferred encoding.</param>
820       <param name="encoderFallback">An object that provides an error-handling procedure when a character cannot be encoded with this encoding.</param>
821       <param name="decoderFallback">An object that provides an error-handling procedure when a byte sequence cannot be decoded with the current encoding.</param>
822       <returns>The encoding that is associated with the specified name, or null if this <see cref="T:System.Text.EncodingProvider"></see> cannot return a valid encoding that corresponds to <paramref name="name">name</paramref>.</returns>
823     </member>
824   </members>
825 </doc></span>