BeFriend.ViewModel.SosPageViewModel.TimerStarter C# (CSharp) Метод

TimerStarter() приватный Метод

private TimerStarter ( ) : void
Результат void
        private async void TimerStarter()
        {
            SosPageText += "Timer Started \n";
            RaisePropertyChanged(()=>SosPageText);
            var timer = new DispatcherTimer();
            timer.Interval = TimeSpan.FromSeconds(300);
            timer.Tick += timer_Tick;
            timer.Start();

            if (!ApiInformation.IsTypePresent("Windows.Phone.UI.Input.HardwareButtons"))
                return;
            var spineClass = new SpineClass();
            spineClass.InitializeCallingInfoAsync();
            
        }