JsonFormatWriterGenerator_static.cs 569 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection;
  5. using System.Xml;
  6. namespace System.Runtime.Serialization.Json
  7. {
  8. internal partial class JsonFormatWriterGenerator
  9. {
  10. partial class CriticalHelper
  11. {
  12. internal JsonFormatClassWriterDelegate GenerateClassWriter(ClassDataContract classContract)
  13. {
  14. throw new NotImplementedException ();
  15. }
  16. internal JsonFormatCollectionWriterDelegate GenerateCollectionWriter(CollectionDataContract collectionContract)
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. }
  21. }
  22. }