File: Windows\Network\IN6_ADDR.cs
Web Access
Project: src\src\Libraries\Microsoft.Extensions.Diagnostics.ResourceMonitoring\Microsoft.Extensions.Diagnostics.ResourceMonitoring.csproj (Microsoft.Extensions.Diagnostics.ResourceMonitoring)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Runtime.InteropServices;
 
namespace Microsoft.Extensions.Diagnostics.ResourceMonitoring.Windows.Network;
 
/// <summary>The IN6_ADDR structure specifies an IPv6 transport address.</summary>
[StructLayout(LayoutKind.Sequential)]
internal struct IN6_ADDR
{
    [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
    internal byte[] Byte;
}