JsonFormatReaderGenerator_static.cs 726 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection;
  5. namespace System.Runtime.Serialization.Json
  6. {
  7. internal partial class JsonFormatReaderGenerator
  8. {
  9. partial class CriticalHelper
  10. {
  11. public JsonFormatClassReaderDelegate GenerateClassReader(ClassDataContract classContract)
  12. {
  13. throw new NotImplementedException ();
  14. }
  15. public JsonFormatCollectionReaderDelegate GenerateCollectionReader(CollectionDataContract collectionContract)
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. public JsonFormatGetOnlyCollectionReaderDelegate GenerateGetOnlyCollectionReader(CollectionDataContract collectionContract)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. }
  24. }
  25. }