System.Private.Windows.BinaryFormat.Serializer.MemberReference
The MemberReference record contains a reference to another record that contains the actual value.
namespace System.Private.Windows.BinaryFormat.Serializer
{
internal sealed class MemberReference : Record, IRecord<MemberReference>, IRecord
{
public Id IdRef { get; }
public static RecordType RecordType { get; }
public MemberReference(Id idRef);
public static implicit operator Id(MemberReference value);
}
}