@@ -30,19 +30,19 @@ async Task<T> ICacheClientAsync.GetAsync<T>(string key, CancellationToken token)
3030 async Task < bool > ICacheClientAsync . SetAsync < T > ( string key , T value , CancellationToken token )
3131 {
3232 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
33- return await client . SetAsync < T > ( key , value , token ) . ConfigureAwait ( false ) ;
33+ return await client . SetAsync ( key , value , token ) . ConfigureAwait ( false ) ;
3434 }
3535
3636 async Task < bool > ICacheClientAsync . SetAsync < T > ( string key , T value , DateTime expiresAt , CancellationToken token )
3737 {
3838 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
39- return await client . SetAsync < T > ( key , value , expiresAt , token ) . ConfigureAwait ( false ) ;
39+ return await client . SetAsync ( key , value , expiresAt , token ) . ConfigureAwait ( false ) ;
4040 }
4141
4242 async Task < bool > ICacheClientAsync . SetAsync < T > ( string key , T value , TimeSpan expiresIn , CancellationToken token )
4343 {
4444 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
45- return await client . SetAsync < T > ( key , value , expiresIn , token ) . ConfigureAwait ( false ) ;
45+ return await client . SetAsync ( key , value , expiresIn , token ) . ConfigureAwait ( false ) ;
4646 }
4747
4848 async Task ICacheClientAsync . FlushAllAsync ( CancellationToken token )
@@ -60,7 +60,7 @@ async Task<IDictionary<string, T>> ICacheClientAsync.GetAllAsync<T>(IEnumerable<
6060 async Task ICacheClientAsync . SetAllAsync < T > ( IDictionary < string , T > values , CancellationToken token )
6161 {
6262 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
63- await client . SetAllAsync < T > ( values , token ) . ConfigureAwait ( false ) ;
63+ await client . SetAllAsync ( values , token ) . ConfigureAwait ( false ) ;
6464 }
6565
6666 async Task < bool > ICacheClientAsync . RemoveAsync ( string key , CancellationToken token )
@@ -129,37 +129,37 @@ async Task<long> ICacheClientAsync.DecrementAsync(string key, uint amount, Cance
129129 async Task < bool > ICacheClientAsync . AddAsync < T > ( string key , T value , CancellationToken token )
130130 {
131131 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
132- return await client . AddAsync < T > ( key , value , token ) . ConfigureAwait ( false ) ;
132+ return await client . AddAsync ( key , value , token ) . ConfigureAwait ( false ) ;
133133 }
134134
135135 async Task < bool > ICacheClientAsync . ReplaceAsync < T > ( string key , T value , CancellationToken token )
136136 {
137137 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
138- return await client . ReplaceAsync < T > ( key , value , token ) . ConfigureAwait ( false ) ;
138+ return await client . ReplaceAsync ( key , value , token ) . ConfigureAwait ( false ) ;
139139 }
140140
141141 async Task < bool > ICacheClientAsync . AddAsync < T > ( string key , T value , DateTime expiresAt , CancellationToken token )
142142 {
143143 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
144- return await client . AddAsync < T > ( key , value , expiresAt , token ) . ConfigureAwait ( false ) ;
144+ return await client . AddAsync ( key , value , expiresAt , token ) . ConfigureAwait ( false ) ;
145145 }
146146
147147 async Task < bool > ICacheClientAsync . ReplaceAsync < T > ( string key , T value , DateTime expiresAt , CancellationToken token )
148148 {
149149 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
150- return await client . ReplaceAsync < T > ( key , value , expiresAt , token ) . ConfigureAwait ( false ) ;
150+ return await client . ReplaceAsync ( key , value , expiresAt , token ) . ConfigureAwait ( false ) ;
151151 }
152152
153153 async Task < bool > ICacheClientAsync . AddAsync < T > ( string key , T value , TimeSpan expiresIn , CancellationToken token )
154154 {
155155 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
156- return await client . AddAsync < T > ( key , value , expiresIn , token ) . ConfigureAwait ( false ) ;
156+ return await client . AddAsync ( key , value , expiresIn , token ) . ConfigureAwait ( false ) ;
157157 }
158158
159159 async Task < bool > ICacheClientAsync . ReplaceAsync < T > ( string key , T value , TimeSpan expiresIn , CancellationToken token )
160160 {
161161 await using var client = await GetClientAsync ( token ) . ConfigureAwait ( false ) ;
162- return await client . ReplaceAsync < T > ( key , value , expiresIn , token ) . ConfigureAwait ( false ) ;
162+ return await client . ReplaceAsync ( key , value , expiresIn , token ) . ConfigureAwait ( false ) ;
163163 }
164164 }
165165}
0 commit comments