C# 클래스 TUP.AsmResolver.ResourceDataEntry

Represents a data entry of a resource directory entry.
파일 보기 프로젝트 열기: Rex-Hays/GNIDA

공개 메소드들

메소드 설명
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