PEMemoryBlock.GetContent 메서드

정의

오버로드

Name Description
GetContent()

전체 블록의 내용을 배열로 읽습니다.

GetContent(Int32, Int32)

블록의 일부 내용을 배열로 읽습니다.

GetContent()

Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs

전체 블록의 내용을 배열로 읽습니다.

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)

반품

변경할 수 없는 바이트 배열입니다.

적용 대상

GetContent(Int32, Int32)

Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs
Source:
PEMemoryBlock.cs

블록의 일부 내용을 배열로 읽습니다.

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)

매개 변수

start
Int32

블록의 시작 위치입니다.

length
Int32

읽을 바이트 수입니다.

반품

변경할 수 없는 바이트 배열입니다.

예외

지정된 범위가 블록 내에 포함되지 않습니다.

적용 대상