Hey guys, I would like to know, what the difference is, betweeen the property "Local" and "Not Local" in a procedure, when I want to create a subscriber? Is the property "Local" only used, when I want to extend my standard code with some lines of code and if I leave the property, it means I want to extend my standard code to a new function?
Local on an event publisher means that the event can only be raised by the same object that declared it. Event publishers without local can be raised by any other objects.
Most (or even all events) will have the local modifier.
Most helpful comment
Local on an event publisher means that the event can only be raised by the same object that declared it. Event publishers without local can be raised by any other objects.
Most (or even all events) will have the local modifier.