Как вернуть действительный массив JSON в WCF

Вот мой webInvoke

[WebInvoke(
        Method = "GET",
        ResponseFormat = WebMessageFormat.Json,
        BodyStyle = WebMessageBodyStyle.Bare,
        UriTemplate = "{invoice}/{transtype}/"

        )
    ]

У меня есть этот код возврата

Dictionary<string, object> dic = new Dictionary<string, object>();
        dic.Add("ApprovalStatus", response.ApprovalStatus);
        dic.Add("AuthorizationCode", response.AuthorizationCode);
        dic.Add("CardBalance", response.CardBalance);
        dic.Add("ErrorMessage", response.ErrorMessage);
        dic.Add("InvoiceNumber", response.InvoiceNumber);

        return dic;

Моя проблема заключается в том, что он не возвращает допустимый массив JSON

Пример результата

 [{"Key":"ApprovalStatus","Value":"CAPTURED"},{"Key":"AuthorizationCode","Value":"TAS926"},{"Key":"CardBalance","Value":null},{"Key":"ErrorMessage","Value":""},{"Key":"InvoiceNumber","Value":"1"},{"Key":"ReferenceNumber","Value":"313506502708"},{"Key":"UniqueCode","Value":"2704"}]

Как я могу сделать это массив JSON?

0 ответов

Другие вопросы по тегам