Summary
Serializes an System.Collections.Generic.IEnumerable`1
to a JSON string.
Syntax
public static string SerializeIssuesToJsonString(this ICakeContext context, IEnumerable<IIssue> issues)
Examples
Serializes a list of issues to a JSON string:
var jsonString =
SerializeIssuesToJsonString(issues);
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
issues |
IEnumerable<IIssue> |
Issues which should be serialized. |
Return Value
Type |
Description |
string |
Serialized issues. |