INameCreationService.cs 460 B

12345678910111213141516171819202122
  1. // System.ComponentModel.Design.Serialization.INameCreationService.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Collections;
  9. using System.Web.UI.Design;
  10. namespace System.ComponentModel.Design.Serialization
  11. {
  12. public interface INameCreationService
  13. {
  14. string CreateName (IContainer container, Type dataType);
  15. bool IsValidName (string name);
  16. void ValidateName (string name);
  17. }
  18. }