Method | Description | |
---|---|---|
AddRecord ( IEnumerable |
Add the given content to the blob.
|
|
Blob ( uint startAddress, IEnumerable |
Create a new blob using the given start address and content.
|
|
CloneWithNewStartAddress ( uint newStartAddress ) : |
||
GetDataString ( ) : string | ||
ToString ( ) : string |
Describe the blob in human terms.
|
|
TryGetByte ( byte &result, int &offset ) : bool |
Try to get a byte from the blob at the given offset. If successful, increment the offset.
|
|
TryGetUInt16 ( |
Try to get a unsigned short from the blob at the given offset. If successful, incrmenet offset
|
|
TryGetUInt32 ( uint &result, int &offset ) : bool |
Try to get an unsigned 32-bit integer from the blob at the given offset. If successful, increment the offset.
|
public AddRecord ( IEnumerable |
||
content | IEnumerable |
|
return | void |
public Blob ( uint startAddress, IEnumerable |
||
startAddress | uint | |
content | IEnumerable |
|
return | System |
public CloneWithNewStartAddress ( uint newStartAddress ) : |
||
newStartAddress | uint | |
return |
public TryGetByte ( byte &result, int &offset ) : bool | ||
result | byte | |
offset | int | |
return | bool |
public TryGetUInt16 ( |
||
result | ||
offset | int | |
return | bool |
public TryGetUInt32 ( uint &result, int &offset ) : bool | ||
result | uint | |
offset | int | |
return | bool |