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

BeginReadGuid() public method

public BeginReadGuid ( long offset, AsyncCallback callback, object state ) : IAsyncResult
offset long
callback AsyncCallback
state object
return IAsyncResult
        public IAsyncResult BeginReadGuid(long offset, AsyncCallback callback, object state)
        {
            return BeginReadBytes(offset, 16, callback, state);
        }

Usage Example

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