Method | Description | |
---|---|---|
ContainsTicket ( string ticketKey ) : bool | ||
GetAllTicketKeys ( ) : IEnumerable |
||
GetAllTicketedUsers ( ) : IEnumerable |
||
GetAllTickets ( ) : IEnumerable |
||
GetTicket ( string ticketKey ) : UserAuthenticationTicket | ||
GetUserTicketKeys ( string username ) : IEnumerable |
||
GetUserTickets ( string username ) : IEnumerable |
||
InsertTicket ( UserAuthenticationTicket ticket, System.DateTime expiration ) : void | ||
RemoveExpiredTickets ( ) : void | ||
RevokeTicket ( string ticketKey ) : void | ||
RevokeUserTickets ( string username ) : void | ||
UpdateTicketExpiration ( UserAuthenticationTicket ticket, System.DateTime newExpiration ) : void | ||
VerifyTicket ( UserAuthenticationTicket ticket ) : bool |
public abstract ContainsTicket ( string ticketKey ) : bool | ||
ticketKey | string | |
return | bool |
public abstract GetAllTicketKeys ( ) : IEnumerable |
||
return | IEnumerable |
public abstract GetAllTicketedUsers ( ) : IEnumerable |
||
return | IEnumerable |
public abstract GetAllTickets ( ) : IEnumerable |
||
return | IEnumerable |
public abstract GetTicket ( string ticketKey ) : UserAuthenticationTicket | ||
ticketKey | string | |
return | UserAuthenticationTicket |
public abstract GetUserTicketKeys ( string username ) : IEnumerable |
||
username | string | |
return | IEnumerable |
public abstract GetUserTickets ( string username ) : IEnumerable |
||
username | string | |
return | IEnumerable |
public abstract InsertTicket ( UserAuthenticationTicket ticket, System.DateTime expiration ) : void | ||
ticket | UserAuthenticationTicket | |
expiration | System.DateTime | |
return | void |
public abstract RemoveExpiredTickets ( ) : void | ||
return | void |
public abstract RevokeTicket ( string ticketKey ) : void | ||
ticketKey | string | |
return | void |
public abstract RevokeUserTickets ( string username ) : void | ||
username | string | |
return | void |
public abstract UpdateTicketExpiration ( UserAuthenticationTicket ticket, System.DateTime newExpiration ) : void | ||
ticket | UserAuthenticationTicket | |
newExpiration | System.DateTime | |
return | void |
public abstract VerifyTicket ( UserAuthenticationTicket ticket ) : bool | ||
ticket | UserAuthenticationTicket | |
return | bool |