IAmbientScopeProvider.cs 201 B

1234567891011
  1. using System;
  2. namespace Abp.Runtime
  3. {
  4. public interface IAmbientScopeProvider<T>
  5. {
  6. T GetValue(string contextKey);
  7. IDisposable BeginScope(string contextKey, T value);
  8. }
  9. }