コード例 #1
0
        /// <summary>
        /// Initializes the application core services.
        /// </summary>
        /// <returns>A <see cref="Task"/> that represents the asynchronous operations.</returns>
        public async Task InitializeAsync()
        {
            intent       = new IntentService(this);
            localization = new LocalizationProvider(this);

            intent.Initialize();

            await Configuration.InitializeAsync().ConfigureAwait(false);

            await localization.InitializeAsync().ConfigureAwait(false);
        }