BeginReadDateTime() public method

public BeginReadDateTime ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult
Ejemplo n.º 1
0
 private IAsyncResult BeginReadTimeStamp(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadDateTime(this.GetFooterOffset() + attribute.Offset, callback, state));
 }
Ejemplo n.º 2
0
 private IAsyncResult BeginReadParentTimeStamp(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadDateTime(headerOffset + attribute.Offset, callback, state));
 }