| 1234567891011121314151617181920212223242526272829303132333435 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- // See the LICENSE file in the project root for more information.
- namespace System.Text
- {
- internal class CodePageDataItem
- {
- public int CodePage { get; }
- public int UIFamilyCodePage { get; }
- public string WebName { get; }
- public string HeaderName { get; }
- public string BodyName { get; }
- public string DisplayName { get; }
- public uint Flags { get; }
- internal CodePageDataItem(
- int codePage,
- int uiFamilyCodePage,
- string webName,
- string headerName,
- string bodyName,
- string displayName,
- uint flags)
- {
- CodePage = codePage;
- UIFamilyCodePage = uiFamilyCodePage;
- WebName = webName;
- HeaderName = headerName;
- BodyName = bodyName;
- DisplayName = displayName;
- Flags = flags;
- }
- }
- }
|