public void CallSerialize(Type type)
 {
     if (type == null)
     {
         CharStream.WriteJsonNull();
     }
     else
     {
         AutoCSer.Reflection.RemoteType remoteType = new AutoCSer.Reflection.RemoteType(type);
         TypeSerializer <AutoCSer.Reflection.RemoteType> .MemberSerialize(this, ref remoteType);
     }
 }