protected bool TryRead <T>(string key, out T value)
        {
            var success = _DataContainer.TryRead <T>(key, out var result, true, _SerializationService);

            value = result;
            return(success);
        }