We need you! We're working hard on the next version of Developer Fusion - Let us know what you think we should be up to!

The Labs \ Source Viewer \ SSCLI \ System.Resources \ IResourceReader

  1. // ==++==
  2. //
  3. //
  4. // Copyright (c) 2006 Microsoft Corporation. All rights reserved.
  5. //
  6. // The use and distribution terms for this software are contained in the file
  7. // named license.txt, which can be found in the root of this distribution.
  8. // By using this software in any fashion, you are agreeing to be bound by the
  9. // terms of this license.
  10. //
  11. // You must not remove this notice, or any other, from this software.
  12. //
  13. //
  14. // ==--==
  15. /*============================================================
  16. **
  17. ** Class:  IResourceReader
  18. **
  19. **
  20. ** Purpose: Abstraction to read streams of resources.
  21. **
  22. **
  23. ===========================================================*/
  24. namespace System.Resources
  25. {
  26.     using System;
  27.     using System.IO;
  28.     using System.Collections;
  29.    
  30.     [System.Runtime.InteropServices.ComVisible(true)]
  31.     public interface IResourceReader : IEnumerable, IDisposable
  32.     {
  33.         // Interface does not need to be marked with the serializable attribute
  34.         // Closes the ResourceReader, releasing any resources associated with it.
  35.         // This could close a network connection, a file, or do nothing.
  36.         void Close();
  37.        
  38.        
  39.         new IDictionaryEnumerator GetEnumerator();
  40.     }
  41. }

Developer Fusion