BeginReadGuid() public method

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