コード例 #1
0
        /// <summary>
        /// Returns a list of JSON members that make up the error.
        /// </summary>
        /// <param name="serializer">The JSON serializer to use when serializing the values.</param>
        /// <param name="error">The error to serialized into its members.</param>
        /// <returns>The list of JSON members that represent the JSON API error.</returns>
        IEnumerable <JsonMember> SerializeMembers(JsonSerializer serializer, JsonApiError error)
        {
            if (error.Status != null)
            {
                yield return(new JsonMember("status", serializer.SerializeValue(error.Status)));
            }

            if (error.Code != null)
            {
                yield return(new JsonMember("code", serializer.SerializeValue(error.Code)));
            }

            if (error.Title != null)
            {
                yield return(new JsonMember("title", serializer.SerializeValue(error.Title)));
            }

            if (error.Detail != null)
            {
                yield return(new JsonMember("detail", serializer.SerializeValue(error.Detail)));
            }
        }
コード例 #2
0
 /// <summary>
 /// Serialize a single instance of an error.
 /// </summary>
 /// <param name="error">The error to serialize.</param>
 /// <returns>The JSON object that represents the serialized error response.</returns>
 public JsonObject Serialize(JsonApiError error)
 {
     return(SerializeMany(new [] { error }));
 }