ITypeProvider.cs 435 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SuperSocket.SocketBase.Config
  5. {
  6. /// <summary>
  7. /// TypeProvider's interface
  8. /// </summary>
  9. public interface ITypeProvider
  10. {
  11. /// <summary>
  12. /// Gets the name.
  13. /// </summary>
  14. string Name { get; }
  15. /// <summary>
  16. /// Gets the type.
  17. /// </summary>
  18. string Type { get; }
  19. }
  20. }