I am planning an application in which the server side will be written in C# and the client side will be created using phonegap
The application makes heavy use of Binary Files serialized using the protobuf-net libs.
Say i have an object in C#
public class Foo
{
private string FooProp;
}
and this object is serialized and transferred to the client using phonegap. Is it even possble to deserialize the resultant binary file in phone gap and access these properties in phonegap using Javascript?