1 write to Source
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenSource.cs (1)
1032
public Registrations(CancellationTokenSource source) =>
Source
= source;
6 references to Source
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenRegistration.cs (3)
49
CancellationTokenSource source = node.Registrations.
Source
;
79
CancellationTokenSource source = node.Registrations.
Source
;
102
new CancellationToken(node.Registrations.
Source
) : // avoid CTS.Token, which throws after disposal
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenSource.cs (3)
774
Debug.Assert(node.Registrations.
Source
== this);
1217
Invoke(Callback, CallbackState, Registrations.
Source
);
1225
Invoke(node.Callback, node.CallbackState, node.Registrations.
Source
);