コード例 #1
0
 public DefaultModelBinder(TypeBindingRepository typeBindingRepo, IOptionsSnapshot <JsonOptions> jsonOptions)
 {
     this.typeBindingRepo = typeBindingRepo;
     this.jsonOptions     = jsonOptions;
     jsonOptions.Value.JsonSerializerOptions.MaxDepth = 0;
 }
コード例 #2
0
 public DefaultModelBinder(PropertySetterFactory propertySetterFactory, TypeBindingRepository typeBindingRepo)
 {
     this.propertySetterFactory = propertySetterFactory;
     this.typeBindingRepo       = typeBindingRepo;
 }