G
Guest
Dear all,
I have a client application which refer 2 asemblies A and B from different
name space:
1- Client application call a MethodA from AssemblyA
2- MethodA from assembly A call methodB from AssemblyB code
3- MethodeB from AssemblyB raise an event for any subscribers when code
inisde than method gets complete without error
How can I register to the event of MethodeB from an Assembly C ?
If I do AssemblyB myEvent +=new myEventHandler(myDelegateFunction)
then myDelagateFunction gets called only if f MethodeB is called from an
instance of AsemblyB but not throught the whole path AssemblyA ->Assembly B
Any ideas why ?
thnaks for help
serge
How can I
I have a client application which refer 2 asemblies A and B from different
name space:
1- Client application call a MethodA from AssemblyA
2- MethodA from assembly A call methodB from AssemblyB code
3- MethodeB from AssemblyB raise an event for any subscribers when code
inisde than method gets complete without error
How can I register to the event of MethodeB from an Assembly C ?
If I do AssemblyB myEvent +=new myEventHandler(myDelegateFunction)
then myDelagateFunction gets called only if f MethodeB is called from an
instance of AsemblyB but not throught the whole path AssemblyA ->Assembly B
Any ideas why ?
thnaks for help
serge
How can I