AsyncLocalValueChangedArgs<T> Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The class that provides data change information to AsyncLocal<T> instances that register for change notifications.
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)
Type Parameters
- T
The type of the data.
- Inheritance
Remarks
An AsyncLocal<T> objects receives change notifications when it is instantiated by calling its AsyncLocal<T>(Action<AsyncLocalValueChangedArgs<T>>) constructor.
Properties
CurrentValue |
Gets the data's current value. |
PreviousValue |
Gets the data's previous value. |
ThreadContextChanged |
Returns a value that indicates whether the value changes because of a change of execution context. |