How instance a C# Generic<T> class from ActionScript RemoteObject?

198 views Asked by At

Is it possible to create an instance of a C# Generic class from Flex with RemoteObject and source?

remoteObject = new RemoteObject("fluorine");
remoteObject.source="Service.GenericClass`1"; //how specific the entity class??
remoteObject.getMethod(arg1, arg2);

I'm getting this error messages:

Cannot create an instance of Service.GenericClass``1[T] because ContainsGenericParameters is true.

This makes sense because I'm not specifying the entity class, but, how I do that??

I'm using FluorineFx for the remoting.

1

There are 1 answers

0
Lieven Cardoen On

I think the best thing you can do is get the FluorineFX source code, set a few breakpoints and try to figure it out like that.