Exemple #1
0
 /// <summary>
 /// Reads a BSON Int32 from the reader.
 /// </summary>
 /// <returns>An Int32.</returns>
 public override int ReadInt32()
 {
     if (Disposed) { ThrowObjectDisposedException(); }
     VerifyBsonType("ReadInt32", BsonType.Int32);
     State = GetNextState();
     return _bsonStream.ReadInt32();
 }
        static int _m_ReadInt32(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                MongoDB.Bson.IO.BsonStream gen_to_be_invoked = (MongoDB.Bson.IO.BsonStream)translator.FastGetCSObj(L, 1);



                {
                    int gen_ret = gen_to_be_invoked.ReadInt32(  );
                    LuaAPI.xlua_pushinteger(L, gen_ret);



                    return(1);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }