CQRS.Tests.KeyValueStorage.Sql.DocumentDbSpecification.GetStoredValue C# (CSharp) Метод

GetStoredValue() приватный Метод

private GetStoredValue ( string theID ) : string
theID string
Результат string
        private string GetStoredValue(string theID)
        {
            string storedValue;
            _store.TryGet<string>(theID, out storedValue, _persistentValues);
            return storedValue;
        }