This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.
Summary
Deserializes an
IEnumerable<T>
from a JSON string.
- Assembly
- Cake
.Issues .dll - Namespace
- Cake
.Issues - Containing Type
- Aliases
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 |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
jsonString | string | JSON representation of the issues. |
Return Value
Type | Description |
---|---|
IEnumerable |
List of issues. |