AcManager.Tools.SpecialDriveModes.RsrStarter.Start C# (CSharp) Method

Start() public method

public Start ( IProgress progress = null, CancellationToken cancellation = default(CancellationToken) ) : Task
progress IProgress
cancellation System.Threading.CancellationToken
return Task
        public async Task Start(IProgress<string> progress = null, CancellationToken cancellation = default(CancellationToken)) {
            progress?.Report(AppStrings.RsrStarter_GettingInformation);
            var entry = await RsrApiProvider.GetEventInformationAsync(_eventId, cancellation);
            Logging.Write("Car ID: " + entry?.CarId);
        }