Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IAsyncLocalValueMap.cs
Go to the documentation of this file.
1namespace System.Threading;
2
3internal interface IAsyncLocalValueMap
4{
5 bool TryGetValue(IAsyncLocal key, out object value);
6
7 IAsyncLocalValueMap Set(IAsyncLocal key, object value, bool treatNullValueAsNonexistent);
8}
IAsyncLocalValueMap Set(IAsyncLocal key, object value, bool treatNullValueAsNonexistent)
bool TryGetValue(IAsyncLocal key, out object value)