If I add an event to my control in the markup, eg in and EntityDataSource add a OnUpdating, how can I find the method parameter list?

eg how do I know to put in

(object sender, EntityDataSourceChangingEventArgs e)

instead of

(object sender, EventArgs e)

In a FormView OnDataBinding event is there a more specific EventArgs class than

(object sender, EventArgs e)
link|improve this question
feedback

2 Answers

It is defined by the event signature. Not much you can, but rewrite the code if you can.

link|improve this answer
feedback

In that case I would just type in EntityDataSource OnUpdating into google....almost always within the first few results I'll see an example with the correct parameter list.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.