Is it possible to bind to an event with a lambda (and capture context)?

Is it possible to bind a lambda to an event similar to this:

someActor.OnDestoroy.Add([&](){DoStuff(SomeClassPorperty);});