| 1234567891011121314151617181920212223242526 |
- //
- // System.Security.Principal.IIdentity.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Security.Principal {
- public interface IIdentity {
- string AuthenticationType {
- get;
- }
- bool IsAuthenticated {
- get;
- }
- string Name {
- get;
- }
- }
- }
|