Forum Discussion
5 Replies
- Yoann_MaingonIdeator IOk, Glad you solved it !! Cool !
- Former_MemberIdeator II need the name of the event from which the method is getting triggered, This existing functionality evendata.GetType().Name gives me the name of the event which solved my problem.
- Yoann_MaingonIdeator Inot sure I understand when you said "I could able to solve this eventdata. GetType()." you found a solution or you which this existed?
- Former_MemberIdeator IHi yoann, Actually I didn't wanna create separate method for each event that's my main requirement. I could able to solve this eventdata. GetType(). Name gives me the name of the trigger which calls the method so from there I could able get the required information. Thanks for the reply.
- Yoann_MaingonIdeator IHummm, I don't think you can easily do that. But, you could create a different method for each trigger which calls most of your common code in a generic method. Would that solve the problem?