static int __CreateInstance(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                if (LuaAPI.lua_gettop(L) == 1)
                {
                    MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute gen_ret = new MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute();
                    translator.Push(L, gen_ret);

                    return(1);
                }
                if (LuaAPI.lua_gettop(L) == 2 && translator.Assignable <System.Type>(L, 2))
                {
                    System.Type _serializerType = (System.Type)translator.GetObject(L, 2, typeof(System.Type));

                    MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute gen_ret = new MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute(_serializerType);
                    translator.Push(L, gen_ret);

                    return(1);
                }
            }
            catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(LuaAPI.luaL_error(L, "invalid arguments to MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute constructor!"));
        }
        static int _g_get_SerializerType(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute gen_to_be_invoked = (MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.SerializerType);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
        static int _m_Apply(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute gen_to_be_invoked = (MongoDB.Bson.Serialization.Attributes.BsonSerializerAttribute)translator.FastGetCSObj(L, 1);



                {
                    MongoDB.Bson.Serialization.BsonMemberMap _memberMap = (MongoDB.Bson.Serialization.BsonMemberMap)translator.GetObject(L, 2, typeof(MongoDB.Bson.Serialization.BsonMemberMap));

                    gen_to_be_invoked.Apply(_memberMap);



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