PEMemoryBlock.GetContent Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Överlagringar
| Name | Description |
|---|---|
| GetContent() |
Läser innehållet i hela blocket i en matris. |
| GetContent(Int32, Int32) |
Läser innehållet i en del av blocket i en matris. |
GetContent()
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
Läser innehållet i hela blocket i en matris.
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)
Returer
En oföränderlig bytematris.
Gäller för
GetContent(Int32, Int32)
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
- Källa:
- PEMemoryBlock.cs
Läser innehållet i en del av blocket i en matris.
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)
Parametrar
- start
- Int32
Startpositionen i blocket.
- length
- Int32
Antal byte som ska läsas.
Returer
En oföränderlig matris med byte.
Undantag
Det angivna intervallet finns inte i blocket.