| File: System\Reflection\PortableExecutable\ResourceSectionBuilder.cs | Web Access |
| Project: src\runtime\src\libraries\System.Reflection.Metadata\src\System.Reflection.Metadata.csproj (System.Reflection.Metadata) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Reflection.Metadata; namespace System.Reflection.PortableExecutable { /// <summary> /// Base class for PE resource section builder. Implement to provide serialization logic for native resources. /// </summary> public abstract class ResourceSectionBuilder { protected ResourceSectionBuilder() { } protected internal abstract void Serialize(BlobBuilder builder, SectionLocation location); } }