Interface ICustomSamlSessionStore
Interface provides custom methods for saml session storage.
Namespace: Terrasoft.ComponentSpace.Interfaces
Assembly: Terrasoft.ComponentSpace.Interfaces.dll
Syntax
public interface ICustomSamlSessionStore
Remarks
External dependency allocation.
Methods
GetProperty(String)
Returns item from internal session storage.
Declaration
object GetProperty(string key)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | Item key. |
Returns
Type | Description |
---|---|
System.Object | Item value. |
SetProperty(String, Object)
Stores item to internal session storage.
Declaration
void SetProperty(string key, object value)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | Item key. |
System.Object | value | Item value. |