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

BeginReadUInt64() public method

public BeginReadUInt64 ( long offset, AsyncCallback callback, object state ) : IAsyncResult
offset long
callback AsyncCallback
state object
return IAsyncResult
        public IAsyncResult BeginReadUInt64(long offset, AsyncCallback callback, object state)
        {
            this.SetPosition(offset);
            return AsyncMachine.BeginAsyncMachine(FillBuffer, 8, callback, state);
        }

Usage Example

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