Expand the `[AsBinder]` attribute to support binding to methods, enabling more flexible component interactions without requiring new binder classes. ``` csharp [View] public partial class View : MonoView { [AsBinder(typeof(GenericOneWayBinder<bool>))] private void IsActive(bool value) => gameObject.SetActive(value); } ```