/// <summary>
 /// Initializes a new instance of the <see cref="CustomConverter{T}"/> class.
 /// </summary>
 /// <param name="options">The options.</param>
 public CustomConverter(CustomConverterOptions options)
 {
     this.Options = options;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CircularReferenceConverter{T}"/> class.
 /// </summary>
 /// <param name="options">The options.</param>
 public CircularReferenceConverter(CustomConverterOptions options)
     : base(options)
 {
 }