| File: System\Private\Windows\BinaryFormat\Serializer\ArrayInfo.cs | Web Access |
| Project: src\winforms\src\System.Private.Windows.Core\src\Microsoft.Private.Windows.Core.csproj (Microsoft.Private.Windows.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Private.Windows.BinaryFormat.Serializer; /// <summary> /// Array information structure. /// </summary> /// <remarks> /// <para> /// <see href="https://learn.microsoft.com/openspecs/windows_protocols/ms-nrbf/8fac763f-e46d-43a1-b360-80eb83d2c5fb"> /// [MS-NRBF] 2.4.2.1 /// </see> /// </para> /// </remarks> internal readonly struct ArrayInfo : IBinaryWriteable { public Id ObjectId { get; } public Count Length { get; } public ArrayInfo(Id objectId, Count length) { Length = length; ObjectId = objectId; } public readonly void Write(BinaryWriter writer) { writer.Write(ObjectId); writer.Write(Length); } }