PEMemoryBlock.GetContent Método

Definição

Sobrecargas

GetContent()

Lê o conteúdo de todo o bloco em uma matriz.

GetContent(Int32, Int32)

Lê o conteúdo de uma parte do bloco em uma matriz.

GetContent()

Origem:
PEMemoryBlock.cs
Origem:
PEMemoryBlock.cs
Origem:
PEMemoryBlock.cs

Lê o conteúdo de todo o bloco em uma matriz.

public:
 System::Collections::Immutable::ImmutableArray<System::Byte> GetContent();
public System.Collections.Immutable.ImmutableArray<byte> GetContent ();
member this.GetContent : unit -> System.Collections.Immutable.ImmutableArray<byte>
Public Function GetContent () As ImmutableArray(Of Byte)

Retornos

Uma matriz de bytes imutável.

Aplica-se a

GetContent(Int32, Int32)

Origem:
PEMemoryBlock.cs
Origem:
PEMemoryBlock.cs
Origem:
PEMemoryBlock.cs

Lê o conteúdo de uma parte do bloco em uma matriz.

public:
 System::Collections::Immutable::ImmutableArray<System::Byte> GetContent(int start, int length);
public System.Collections.Immutable.ImmutableArray<byte> GetContent (int start, int length);
member this.GetContent : int * int -> System.Collections.Immutable.ImmutableArray<byte>
Public Function GetContent (start As Integer, length As Integer) As ImmutableArray(Of Byte)

Parâmetros

start
Int32

A posição inicial no bloco.

length
Int32

O número de bytes a serem lidos.

Retornos

Uma matriz imutável de bytes.

Exceções

O intervalo especificado não está contido no bloco.

Aplica-se a