IXmlTextParser.cs 1.0 KB

12345678910111213141516171819202122232425
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SafeWriter.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">ElenaK</owner>
  6. //------------------------------------------------------------------------------
  7. namespace System.Xml.Serialization {
  8. using System.Xml;
  9. /// <include file='doc\IXmlTextParser.uex' path='docs/doc[@for="IXmlTextParser"]/*' />
  10. ///<internalonly/>
  11. /// <devdoc>
  12. /// <para>This class is <see langword='interface'/> .</para>
  13. /// </devdoc>
  14. public interface IXmlTextParser {
  15. /// <include file='doc\IXmlTextParser.uex' path='docs/doc[@for="IXmlTextParser.Normalized"]/*' />
  16. /// <internalonly/>
  17. bool Normalized { get; set; }
  18. /// <include file='doc\IXmlTextParser.uex' path='docs/doc[@for="IXmlTextParser.WhitespaceHandling"]/*' />
  19. /// <internalonly/>
  20. WhitespaceHandling WhitespaceHandling { get; set; }
  21. }
  22. }