IIdentity.cs 334 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Security.Principal.IIdentity.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Security.Principal {
  10. public interface IIdentity {
  11. string AuthenticationType {
  12. get;
  13. }
  14. bool IsAuthenticated {
  15. get;
  16. }
  17. string Name {
  18. get;
  19. }
  20. }
  21. }