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