BeginReadDateTime() public method

public BeginReadDateTime ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult
コード例 #1
0
 private IAsyncResult BeginReadTimeStamp(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadDateTime(this.GetFooterOffset() + attribute.Offset, callback, state));
 }
コード例 #2
0
 private IAsyncResult BeginReadParentTimeStamp(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadDateTime(headerOffset + attribute.Offset, callback, state));
 }