I have a class called Test which has four public properties and one of them is static. the problem is after deserialization the static property contains null value. i have debugged the code and found that at server side it contains the value which is a collection , but at client side it becomes null after deserialization. i know static members doesn't serialize and deserialize so obviously it shud contain the value.
|
|
|||
|
|
|
If the static value is initialised when the type is loaded (via a field initialiser or via the type initialiser/static constructor) then it should contain the value. If however, the server side static value is initialised as a side effect of some method call, then you would have to reproduce this method call on the client as well. |
||||
|
|
|
I'm not sure I understand...as you say in your question:
Given that, why would you expect the value from the server to propagate to the client? You will need to find an alternative means of transferring this property (make an instance property, send your own message, etc.) |
||
|
|
|
|
Static variables are global and stateful - thus they exist solely in the context of the application, or in other words, memory. You could pass the value of the static property in another non-static property, but you can't send your application's memory down to the client. |
||
|
|
