Interface ISSOSessionStore
The single sign-on session store.
Namespace: ComponentSpace.SAML2.Data
Assembly: ComponentSpace.Saml2.dll
Syntax
public interface ISSOSessionStore
Properties
SessionID
Gets the unique SSO session identifier.
Declaration
string SessionID { get; }
Property Value
Type | Description |
---|---|
System. |
The unique SSO session identifier. |
Methods
Delete(Type)
Deletes the SSO session object.
Declaration
void Delete(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | The SSO session object type. |
Load(Type)
Loads the SSO session object.
Declaration
object Load(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | The SSO session object type. |
Returns
Type | Description |
---|---|
System. |
The SSO session object or |
Save(Object)
Saves the SSO session object.
Declaration
void Save(object ssoSession)
Parameters
Type | Name | Description |
---|---|---|
System. |
ssoSession | The serializable SSO session object. |