Microsoft.HockeyApp.HockeyClientExtensionsWP81.CheckForAppUpdateAsync C# (CSharp) Method

CheckForAppUpdateAsync() public static method

Call this method during startup of your app to check for Updates.
public static CheckForAppUpdateAsync ( this @this, UpdateCheckSettings updateSettings = null ) : System.Threading.Tasks.Task
@this this
updateSettings UpdateCheckSettings Settings to define context for Update checking.
return System.Threading.Tasks.Task
        public static async Task CheckForAppUpdateAsync(this IHockeyClient @this, UpdateCheckSettings updateSettings = null)
        {
            HockeyClient.Current.AsInternal().CheckForInitialization();
            await UpdateManager.Current.RunUpdateCheckAsync(updateSettings).ConfigureAwait(false);
        }