CodePageDataItem.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. namespace System.Text
  5. {
  6. internal class CodePageDataItem
  7. {
  8. public int CodePage { get; }
  9. public int UIFamilyCodePage { get; }
  10. public string WebName { get; }
  11. public string HeaderName { get; }
  12. public string BodyName { get; }
  13. public string DisplayName { get; }
  14. public uint Flags { get; }
  15. internal CodePageDataItem(
  16. int codePage,
  17. int uiFamilyCodePage,
  18. string webName,
  19. string headerName,
  20. string bodyName,
  21. string displayName,
  22. uint flags)
  23. {
  24. CodePage = codePage;
  25. UIFamilyCodePage = uiFamilyCodePage;
  26. WebName = webName;
  27. HeaderName = headerName;
  28. BodyName = bodyName;
  29. DisplayName = displayName;
  30. Flags = flags;
  31. }
  32. }
  33. }