|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.IO;
namespace System.Windows
{
/// <summary>
/// Library full name information.
/// </summary>
/// <remarks>
/// <para>
/// <see href="https://learn.microsoft.com/openspecs/windows_protocols/ms-nrbf/7fcf30e1-4ad4-4410-8f1a-901a4a1ea832">
/// [MS-NRBF] 2.6.2
/// </see>
/// </para>
/// </remarks>
internal sealed class BinaryLibrary : IRecord
{
public Id LibraryId { get; }
public string LibraryName { get; }
public BinaryLibrary(Id libraryId, string libraryName)
{
LibraryId = libraryId;
LibraryName = libraryName;
}
public static RecordType RecordType => RecordType.BinaryLibrary;
public void Write(BinaryWriter writer)
{
writer.Write((byte)RecordType);
writer.Write(LibraryId);
writer.Write(LibraryName);
}
}
}
|