CodePageDataItem.cs 972 B

1234567891011121314151617181920212223242526272829303132
  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 UIFamilyCodePage { get; }
  9. public string WebName { get; }
  10. public string HeaderName { get; }
  11. public string BodyName { get; }
  12. public string DisplayName { get; }
  13. public uint Flags { get; }
  14. internal CodePageDataItem(
  15. int uiFamilyCodePage,
  16. string webName,
  17. string headerName,
  18. string bodyName,
  19. string displayName,
  20. uint flags)
  21. {
  22. UIFamilyCodePage = uiFamilyCodePage;
  23. WebName = webName;
  24. HeaderName = headerName;
  25. BodyName = bodyName;
  26. DisplayName = displayName;
  27. Flags = flags;
  28. }
  29. }
  30. }