Ejemplo n.º 1
0
 public async Task <bool> GetAsync()
 {
     return((await _inner.GetAsync())?.Value ?? default(bool));
 }
Ejemplo n.º 2
0
 public async Task <byte[]> GetAsync()
 {
     return((await _inner.GetAsync())?.Value.ToByteArray() ?? new byte[] { });
 }
Ejemplo n.º 3
0
 public async Task <string> GetAsync()
 {
     return((await _inner.GetAsync())?.Value);
 }
Ejemplo n.º 4
0
 public async Task <long> GetAsync()
 {
     return((await _inner.GetAsync())?.Value ?? default(long));
 }
Ejemplo n.º 5
0
 public async Task <ulong> GetAsync()
 {
     return((await _inner.GetAsync())?.Value ?? 0);
 }
Ejemplo n.º 6
0
 public async Task <uint> GetAsync()
 {
     return((await _inner.GetAsync())?.Value ?? default(uint));
 }