_toGet: function (member, data, context) {
                var result = null;
                if (this.__options.toGet)
                    result = this.__options.toGet.call(this.__options.context, member, data, context);
                return result || (member in this.__options.getMap ? this.__options.getMap[member].call(this.__options.context, data, context) : null);