|
UserDataCacheSaveUserData Method
|
Serializes the
userData for the given
loginID into the
UserDataCache.
Namespace: GSF.SecurityAssembly: GSF.Security (in GSF.Security.dll) Version: 2.4.248-beta
Syntaxpublic void SaveUserData(
string loginID,
UserData userData
)
Public Sub SaveUserData (
loginID As String,
userData As UserData
)
public:
void SaveUserData(
String^ loginID,
UserData^ userData
)
member SaveUserData :
loginID : string *
userData : UserData -> unit
function SaveUserData(loginID, userData);
View SourceParameters
- 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