| IStateSerializeData Method |
Gets a serialized representation of the current state.
Namespace: Hangfire.StatesAssembly: Hangfire.Core (in Hangfire.Core.dll) Version: 1.5.0.0
Syntax [NotNullAttribute]
Dictionary<string, string> SerializeData()
<NotNullAttribute>
Function SerializeData As Dictionary(Of String, String)
Return Value
Type:
DictionaryString,
StringA dictionary with serialized properties of the current state.
Remarks
Returning dictionary contains the serialized properties of a state. You can obtain
the state data by using the
GetStateData(String)
method. Please refer to documentation for this method in implementors to learn
which key/value pairs are available.
See Also