public bool IsReferenced(object context, object value)
    {
        object representative;

        if (!TryGetRepresentativeObject(value, out representative))
        {
            return(false);
        }
        return(defaultResolver.IsReferenced(context, representative));
    }