File: src\libraries\System.Private.CoreLib\src\System\Threading\Win32ThreadPoolNativeOverlapped.ExecutionContextCallbackArgs.cs
Web Access
Project: src\src\coreclr\System.Private.CoreLib\System.Private.CoreLib.csproj (System.Private.CoreLib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Threading
{
    internal partial struct Win32ThreadPoolNativeOverlapped
    {
        private sealed unsafe class ExecutionContextCallbackArgs
        {
            internal uint _errorCode;
            internal uint _bytesWritten;
            internal Win32ThreadPoolNativeOverlapped* _overlapped;
            internal OverlappedData? _data;
        }
    }
}