/// <summary>
        /// Gets the object from Json properties.
        /// </summary>
        /// <param name="reader">The <see cref="T: Newtonsoft.Json.JsonReader" /> to read from.</param>
        /// <returns>The object Value.</returns>
        internal static PropertyBatchInfo GetFromJsonProperties(JsonReader reader)
        {
            PropertyBatchInfo obj = null;
            var propName          = reader.ReadPropertyName();

            if (!propName.Equals("Kind", StringComparison.OrdinalIgnoreCase))
            {
                throw new JsonReaderException($"Incorrect discriminator property name {propName}, Expected discriminator property name is Kind.");
            }

            var propValue = reader.ReadValueAsString();

            if (propValue.Equals("Successful", StringComparison.OrdinalIgnoreCase))
            {
                obj = SuccessfulPropertyBatchInfoConverter.GetFromJsonProperties(reader);
            }
            else if (propValue.Equals("Failed", StringComparison.OrdinalIgnoreCase))
            {
                obj = FailedPropertyBatchInfoConverter.GetFromJsonProperties(reader);
            }
            else
            {
                throw new InvalidOperationException("Unknown Kind.");
            }

            return(obj);
        }
Esempio n. 2
0
        /// <summary>
        /// Serializes the object to JSON.
        /// </summary>
        /// <param name="writer">The <see cref="T: Newtonsoft.Json.JsonWriter" /> to write to.</param>
        /// <param name="obj">The object to serialize to JSON.</param>
        internal static void Serialize(JsonWriter writer, PropertyBatchInfo obj)
        {
            var kind = obj.Kind;

            if (kind.Equals(PropertyBatchInfoKind.Successful))
            {
                SuccessfulPropertyBatchInfoConverter.Serialize(writer, (SuccessfulPropertyBatchInfo)obj);
            }
            else if (kind.Equals(PropertyBatchInfoKind.Failed))
            {
                FailedPropertyBatchInfoConverter.Serialize(writer, (FailedPropertyBatchInfo)obj);
            }
            else
            {
                throw new InvalidOperationException("Unknown Kind.");
            }
        }