Returns the object as a string. A string with the Session ID, status value, and the value from JSON.
()
| 197 | /// </summary> |
| 198 | /// <returns>A string with the Session ID, status value, and the value from JSON.</returns> |
| 199 | public override string ToString() |
| 200 | { |
| 201 | return string.Format(CultureInfo.InvariantCulture, "({0} {1}: {2})", this.SessionId, this.Status, this.Value); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | [JsonSerializable(typeof(object))] |