C# Class TUP.AsmResolver.ResourceDataEntry

Represents a data entry of a resource directory entry.
Afficher le fichier Open project: Rex-Hays/GNIDA

Méthodes publiques

Méthode Description
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.

Private Methods

Méthode Description
ResourceDataEntry ( PeImage image, uint offset, ResourceDirectoryEntry parentEntry, Structures rawDataEntry ) : System

Method Details

GetContents() public méthode

Reads the data and returns it in byte array format.
public GetContents ( ) : byte[]
Résultat byte[]

GetStream() public méthode

Reads the data as a stream with a buffer size of 4096 bytes.
public GetStream ( ) : Stream
Résultat Stream

GetStream() public méthode

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.
Résultat Stream