Esempio n. 1
0
 public BindingContext(IModelBinderCollection modelBinderCollection, string prefix)
 {
     currentPrefix = prefix;
     this.modelBinderCollection = modelBinderCollection;
 }
Esempio n. 2
0
 public BindingContext(IModelBinderCollection modelBinderCollection, IDictionary <string, object> environment, string prefix)
 {
     _currentPrefix         = prefix;
     Environment            = environment;
     _modelBinderCollection = modelBinderCollection;
 }
Esempio n. 3
0
 public BindingContext(IModelBinderCollection modelBinderCollection)
     : this(modelBinderCollection, string.Empty)
 {
 }
Esempio n. 4
0
 public BindingContext(IModelBinderCollection modelBinderCollection, IDictionary <string, object> environment)
     : this(modelBinderCollection, environment, "")
 {
 }