ReadBytes() public method

public ReadBytes ( int count ) : byte[]
count int
return byte[]
Ejemplo n.º 1
0
 private byte[] ReadRawData(VhdPropertyAttribute attribute)
 {
     return(dataReader.ReadBytes(headerOffset + attribute.Offset, attribute.Size));
 }
Ejemplo n.º 2
0
 private byte[] ReadWholeFooter(VhdPropertyAttribute attribute)
 {
     return(dataReader.ReadBytes(GetFooterOffset() + attribute.Offset, attribute.Size));
 }
        private string ReadFileLocator(ParentLocator locator)
        {
            var fileLocator = dataReader.ReadBytes(locator.PlatformDataOffset, locator.PlatformDataLength);

            return(CreateFileLocator(locator, fileLocator));
        }