Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Because not all the classes used in the class I want to instantiate are serializable I can't unwrap.

Is this possible?

var appdom = AppDomain.CreateDomain(amServiceable.GetType().ToString());
var objectHandle = appdom.CreateInstance(amServiceable.GetType().Assembly.FullName, 
                                         amServiceable.GetType().FullName);


var plugin = objectHandle.Unwrap() as IPlugin //throws an error. that some class in not marked serializable.
share|improve this question

1 Answer

up vote 2 down vote accepted

In order to use the Unwrap method on an object it must derive from MarshalByRefObject. If the object you want to manipulate doesn't then the only other choice is to use a different MarshalByRefObject to manipulate the object in the other domain

share|improve this answer
Awesome! thanks! it works will accept when possible – albertjan Aug 31 '11 at 14:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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