Click or drag to resize

UserDataCacheSaveUserData Method

Serializes the userData for the given loginID into the UserDataCache.

Namespace: GSF.Security
Assembly: GSF.Security (in GSF.Security.dll) Version: 2.4.181-beta
Syntax
public void SaveUserData(
	string loginID,
	UserData userData
)
View Source

Parameters

loginID  String
Login ID of associated UserData to retrieve.
userData  UserData
Reference to UserData object to serialize into UserDataCache.
Remarks

This will add an entry into the user data cache for loginID if it doesn't exist; otherwise existing entry will be updated.

Updates are automatically queued up for serialization so user does not need to call Save.

See Also