12 Mart 2018 Pazartesi

AsyncLocal Sınıfı

Giriş
Açıklaması şöyle.
AsyncLocal<T> represents ambient data that is local to a given asynchronous control flow, such as an asynchronous method
Constructor
Şöyle yaparız.
private static readonly AsyncLocal<string> asyncLocal = new AsyncLocal<string>();
Value Alanı
Şöyle yaparız.
string text = ...;
asyncLocal.Value = value;

Hiç yorum yok:

Yorum Gönder