You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.Text/CodePagesEncodingProvider.xml
+7-11Lines changed: 7 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -25,16 +25,13 @@
25
25
</Attribute>
26
26
</Attributes>
27
27
<Docs>
28
-
<summary>Provides access to an encoding provider for code pages supported in the desktop .NET Framework but not in UWP apps.</summary>
28
+
<summary>Provides access to an encoding provider for code pages that otherwise are available only in the desktop .NET Framework.</summary>
29
29
<remarks>
30
30
<formattype="text/markdown"><![CDATA[
31
31
32
32
## Remarks
33
-
34
-
> [!NOTE]
35
-
> The <xref:System.Text.CodePagesEncodingProvider> class is supported in the .NET Native implementation of .NET Core only.
36
-
37
-
The .NET Framework for the Windows desktop supports a large set of Unicode and code page encodings. The Universal Windows platform and .NET Native, on the other hand, support only the following encodings:
33
+
34
+
The .NET Framework for the Windows desktop supports a large set of Unicode and code page encodings. .NET Core, on the other hand, supports only the following encodings:
38
35
39
36
- ASCII (code page 20127), which is returned by the <xref:System.Text.Encoding.ASCII%2A?displayProperty=nameWithType> property.
40
37
@@ -54,7 +51,7 @@
54
51
55
52
Other than code page 20127, code page encodings are not supported.
56
53
57
-
The <xref:System.Text.CodePagesEncodingProvider> class extends <xref:System.Text.EncodingProvider> to make these code pages available to .NET Native and Universal Windows Platform (UWP) apps. To use these additional code pages, you do the following:
54
+
The <xref:System.Text.CodePagesEncodingProvider> class extends <xref:System.Text.EncodingProvider> to make these code pages available to .NET Core. To use these additional code pages, you do the following:
58
55
59
56
- Add a reference to the System.Text.Encoding.CodePages.dll assembly to your project.
60
57
@@ -147,9 +144,8 @@
147
144
<formattype="text/markdown"><] or a later version and that otherwise are available only in the .NET Framework on the Windows desktop.
151
147
152
-
The .NET Framework on the Windows desktop supports a large number of character encodings and code pages. You can get a complete list of encodings by calling the <xref:System.Text.Encoding.GetEncodings%2A?displayProperty=nameWithType> method, which is available in the full .NET Framework on the Windows desktop. .NET Native for UWP apps, on the other hand, supports only the following encodings by default:
148
+
The .NET Framework on the Windows desktop supports a large number of character encodings and code pages. You can get a complete list of encodings by calling the <xref:System.Text.Encoding.GetEncodings%2A?displayProperty=nameWithType> method, which is available in the full .NET Framework on the Windows desktop. .NET Core, on the other hand, supports only the following encodings by default:
153
149
154
150
- ASCII (code page 20127), which is returned by the <xref:System.Text.Encoding.ASCII%2A?displayProperty=nameWithType> property.
155
151
@@ -167,7 +163,7 @@
167
163
168
164
- UTF-32BE (code page 12001), which is instantiated by calling an <xref:System.Text.UTF32Encoding> constructor that has a `bigEndian` parameter and providing a value of `true` in the method call.
169
165
170
-
To retrieve an encoding that is present in the .NET Framework on the Windows desktop but not in UWP apps, you do the following:
166
+
To retrieve an encoding that is present in the .NET Framework on the Windows desktop but not in .NET Core, you do the following:
171
167
172
168
- Add a reference to the System.Text.Encoding.CodePages.dll assembly to your project.
0 commit comments