With the default ModelBinder and its attribute Bind we can set a prefix like this:
public ActionResult Save([Bind(Prefix="test")] Person p)) {
}
I have a CustomModelBinderAttribute which returns a bespoke ModelBinder:
public ActionResult Save([PersonBinderAttribute(Prefix="test2")] Person p)) {
}
How do I access the value of Prefix from within my bespoke model binder?