Summary
Deserializes an System.Collections.Generic.IEnumerable`1
from a JSON string.
Syntax
public static IEnumerable<Issue> DeserializeIssuesFromJsonString(this ICakeContext context, string jsonString)
Examples
Deserializes a list of issue from a JSON string:
var issues =
DeserializeIssuesFromJsonString(jsonString);
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
jsonString |
string |
JSON representation of the issues. |
Return Value
Type |
Description |
IEnumerable<Issue> |
List of issues. |