BeginReadUInt64() public method

public BeginReadUInt64 ( long offset, AsyncCallback callback, object state ) : IAsyncResult
offset long
callback AsyncCallback
state object
return IAsyncResult
Ejemplo n.º 1
0
 private IAsyncResult BeginReadPhysicalSize(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadUInt64(this.GetFooterOffset() + attribute.Offset, callback, state));
 }
Ejemplo n.º 2
0
 private IAsyncResult BeginReadDataOffset(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadUInt64(headerOffset + attribute.Offset, callback, state));
 }