BeginReadBytes() public method

public BeginReadBytes ( int count, AsyncCallback callback, object state ) : IAsyncResult
count int
callback AsyncCallback
state object
return IAsyncResult
 private IAsyncResult BeginReadRawData(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadBytes(headerOffset + attribute.Offset, attribute.Size, callback, state));
 }
 private IAsyncResult BeginReadWholeFooter(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadBytes(this.GetFooterOffset() + attribute.Offset, attribute.Size, callback, state));
 }
 private IAsyncResult BeginReadFileLocator(ParentLocator locator, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadBytes(locator.PlatformDataOffset, locator.PlatformDataLength, callback, locator));
 }