C# Класс TUP.AsmResolver.ResourceDataEntry

Represents a data entry of a resource directory entry.
Показать файл Открыть проект

Открытые методы

Метод Описание
GetContents ( ) : byte[]

Reads the data and returns it in byte array format.

GetStream ( ) : Stream

Reads the data as a stream with a buffer size of 4096 bytes.

GetStream ( int buffersize ) : Stream

Reads the data as a stream with a specified buffer size.

Приватные методы

Метод Описание
ResourceDataEntry ( PeImage image, uint offset, ResourceDirectoryEntry parentEntry, Structures rawDataEntry ) : System

Описание методов

GetContents() публичный Метод

Reads the data and returns it in byte array format.
public GetContents ( ) : byte[]
Результат byte[]

GetStream() публичный Метод

Reads the data as a stream with a buffer size of 4096 bytes.
public GetStream ( ) : Stream
Результат Stream

GetStream() публичный Метод

Reads the data as a stream with a specified buffer size.
public GetStream ( int buffersize ) : Stream
buffersize int The buffer size to be used to read the data.
Результат Stream