AsyncLocalValueChangedArgs<T> 结构

定义

向针对更改通知进行了注册的 AsyncLocal<T> 实例提供数据更改信息的类。

generic <typename T>
public value class AsyncLocalValueChangedArgs
public struct AsyncLocalValueChangedArgs<T>
public readonly struct AsyncLocalValueChangedArgs<T>
type AsyncLocalValueChangedArgs<'T> = struct
Public Structure AsyncLocalValueChangedArgs(Of T)

类型参数

T

数据的类型。

继承
AsyncLocalValueChangedArgs<T>

注解

对象 AsyncLocal<T> 在通过调用其 AsyncLocal<T>(Action<AsyncLocalValueChangedArgs<T>>) 构造函数进行实例化时接收更改通知。

属性

CurrentValue

获取数据的当前值。

PreviousValue

获取数据的上一个值。

ThreadContextChanged

返回一个值,该值指示是否由于执行上下文更改而更改了值。

适用于