コード例 #1
0
        /// <summary>
        /// Initializes a new instance of <see cref="SerializationOptions"/>
        /// </summary>
        /// <param name="flags">The serialization flags</param>
        /// <param name="converters">A collection of additional <see cref="JsonConverter">converters</see></param>
        /// <param name="callback">A callback for working directly with the <see cref="JsonSerializer"/> for configuring how the serializer works</param>
        /// <param name="ignoreDefaultConverters">Wether or not to ingore the default discovered Json converters</param>
        /// <remarks>
        /// All instances of this class or subclasses must be immutable, because mapping from
        /// serialization options to contract resolvers are cached for performance reasons.
        /// </remarks>
        protected SerializationOptions(
            SerializationOptionsFlags flags,
            IEnumerable <JsonConverter> converters = null,
            Action <JsonSerializer> callback       = null,
            bool ignoreDefaultConverters           = false)
        {
            Flags = flags;
            if (converters == null)
            {
                Converters = new JsonConverter[0];
            }
            else
            {
                Converters = converters;
            }

            if (callback == null)
            {
                Callback = (o) => {}
            }
            ;
            else
            {
                Callback = callback;
            }
        }
コード例 #2
0
 /// <summary>
 /// Create a custom <see cref="SerializationOptions"/>.
 /// </summary>
 /// <param name="flags"><see cref="SerializationOptionsFlags"/> to use.</param>
 /// <param name="converters">Any <see cref="IEnumerable{JsonConverter}">converters</see> to use.</param>
 /// <param name="callback">A callback for working directly with the <see cref="JsonSerializer"/> for configuring how the serializer works.</param>
 /// <returns>An instance of <see cref="SerializationOptions"/>.</returns>
 public static ISerializationOptions Custom(
     SerializationOptionsFlags flags        = SerializationOptionsFlags.None,
     IEnumerable <JsonConverter> converters = null,
     Action <JsonSerializer> callback       = null)
 {
     return(new SerializationOptions(flags, converters, callback));
 }
コード例 #3
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SerializationOptions"/> class.
        /// </summary>
        /// <param name="flags">The serialization flags.</param>
        /// <param name="converters">A collection of additional <see cref="JsonConverter">converters</see>.</param>
        /// <param name="callback">A callback for working directly with the <see cref="JsonSerializer"/> for configuring how the serializer works.</param>
        /// <remarks>
        /// All instances of this class or subclasses must be immutable, because mapping from
        /// serialization options to contract resolvers are cached for performance reasons.
        /// </remarks>
        protected SerializationOptions(
            SerializationOptionsFlags flags,
            IEnumerable <JsonConverter> converters = null,
            Action <JsonSerializer> callback       = null)
        {
            Flags      = flags;
            Converters = converters ?? Array.Empty <JsonConverter>();

            Callback = callback ?? (_ => { });
        }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of <see cref="SerializationOptions"/>
 /// </summary>
 /// <param name="flags">The serialization flags</param>
 /// <remarks>
 /// All instances of this class or subclasses must be immutable, because mapping from
 /// serialization options to contract resolvers are cached for performance reasons.
 /// </remarks>
 protected SerializationOptions(SerializationOptionsFlags flags)
 {
     Flags = flags;
 }
コード例 #5
0
 /// <summary>
 /// Initializes a new instance of <see cref="SerializationOptions"/>
 /// </summary>
 /// <param name="flags">The serialization flags</param>
 /// <remarks>
 /// All instances of this class or subclasses must be immutable, because mapping from
 /// serialization options to contract resolvers are cached for performance reasons.
 /// </remarks>
 protected SerializationOptions(SerializationOptionsFlags flags)
 {
     Flags = flags;
 }