XmlContent.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //------------------------------------------------------------------------------
  2. // <copyright file="XmlContent.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. // <owner current="false" primary="false">[....]</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data {
  10. /// <devdoc>
  11. /// <para>[To be supplied.]</para>
  12. /// </devdoc>
  13. internal enum XmlContent {
  14. /// <devdoc>
  15. /// <para>[To be supplied.]</para>
  16. /// </devdoc>
  17. None = 0,
  18. /// <devdoc>
  19. /// <para>[To be supplied.]</para>
  20. /// </devdoc>
  21. Empty = 1,
  22. /// <devdoc>
  23. /// <para>[To be supplied.]</para>
  24. /// </devdoc>
  25. TextOnly = 2,
  26. /// <devdoc>
  27. /// <para>[To be supplied.]</para>
  28. /// </devdoc>
  29. EltOnly = 3,
  30. /// <devdoc>
  31. /// <para>[To be supplied.]</para>
  32. /// </devdoc>
  33. Mixed = 4,
  34. }
  35. }