| File: System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.IParseState.cs | Web Access |
| Project: src\runtime\src\libraries\System.Resources.Extensions\src\System.Resources.Extensions.csproj (System.Resources.Extensions) |
// 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; using System.Formats.Nrbf; namespace System.Resources.Extensions.BinaryFormat; internal sealed partial class BinaryFormattedObject { /// <summary> /// Parsing state. /// </summary> internal interface IParseState { BinaryReader Reader { get; } IReadOnlyDictionary<SerializationRecordId, SerializationRecord> RecordMap { get; } Options Options { get; } ITypeResolver TypeResolver { get; } } }