Does it refer to the object the handler it is defined in or the object than handle belongs to:
example:
class foo
{
Object a;
public foo()
{
a.handle += function;
}
void function()
{
this;<--What does this "this" refer to foo or object a?
}
}