Beispiel #1
0
 /// <inheritdoc />
 public override Decimal128 ReadDecimal128()
 {
     if (Disposed) { ThrowObjectDisposedException(); }
     VerifyBsonType(nameof(ReadDecimal128), BsonType.Decimal128);
     State = GetNextState();
     return _bsonStream.ReadDecimal128();
 }
        static int _m_ReadDecimal128(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);



                {
                    MongoDB.Bson.Decimal128 gen_ret = gen_to_be_invoked.ReadDecimal128(  );
                    translator.Push(L, gen_ret);



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