Hi
can anyone explain to me what is happening when a instance of a class declaring a static eventhandler will hold reference to other classes that have registered intent with the event handler in question, being that they are all static would there be any contention between users sessions(I mean his/her usage of the system in a point in time) in asp.net
heres an example , extract from BlogEngine.Net
Post.Saved += new EventHandler<SavedEventArgs>(Post_Saved);
Saved is static to the class post, this event is consumed all over the show, would another user's session see the post saved event since it is static? what are the threading issues I should be aware of when declaring static events?