public static async Task AddSampleUserActivity()
        {
            var activityId  = nameof(SchemeActivationSamplePage);
            var displayText = "Sample Activity";
            var description = $"Sample UserActivity added from Application '{Package.Current.DisplayName}' at {DateTime.Now.ToShortTimeString()}";
            var imageUrl    = "http://adaptivecards.io/content/cats/2.png";

            var activityData = new UserActivityData(activityId, CreateActivationDataSample(), displayText, Colors.DarkRed);
            var adaptiveCard = CreateAdaptiveCardSample(displayText, description, imageUrl);

            await UserActivityService.CreateUserActivityAsync(activityData, adaptiveCard);
        }
Example #2
0
        private async Task StartupAsync()
        {
            // TODO WTS: This is a sample to demonstrate how to add a UserActivity. Please adapt and move this method call to where you consider convenient in your app.
            await UserActivityService.AddSampleUserActivity();

            await ThemeSelectorService.SetRequestedThemeAsync();

            // TODO WTS: Configure and enable Azure Notification Hub integration.
            //  1. Go to the HubNotificationsService class, in the InitializeAsync() method, provide the Hub Name and DefaultListenSharedAccessSignature.
            //  2. Uncomment the following line (an exception will be thrown if it is executed and the above information is not provided).
            // await Singleton<HubNotificationsService>.Instance.InitializeAsync().ConfigureAwait(false);
            await Singleton <StoreNotificationsService> .Instance.InitializeAsync().ConfigureAwait(false);

            Singleton <LiveTileService> .Instance.SampleUpdate();
        }