Microsoft.WindowsAzure.Commands.Tools.Vhd.Model.Persistence.VhdDataReader.BeginReadDateTime C# (CSharp) Method

BeginReadDateTime() public method

public BeginReadDateTime ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult
        public IAsyncResult BeginReadDateTime(AsyncCallback callback, object state)
        {
            return BeginReadUInt32(callback, state);
        }

Same methods

VhdDataReader::BeginReadDateTime ( long offset, AsyncCallback callback, object state ) : IAsyncResult

Usage Example

 private IAsyncResult BeginReadTimeStamp(VhdPropertyAttribute attribute, AsyncCallback callback, object state)
 {
     return(dataReader.BeginReadDateTime(this.GetFooterOffset() + attribute.Offset, callback, state));
 }
All Usage Examples Of Microsoft.WindowsAzure.Commands.Tools.Vhd.Model.Persistence.VhdDataReader::BeginReadDateTime