Care.Views.Lab.PotentialEnemyWrapper.OnNavigatedTo C# (CSharp) Method

OnNavigatedTo() protected method

protected OnNavigatedTo ( System e ) : void
e System
return void
        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {
            IDictionary<string, string> queryString = this.NavigationContext.QueryString;

            if (queryString.ContainsKey("Type"))
            {
                try
                {
                    m_type = (EntryType)Enum.Parse(typeof(EntryType), queryString["Type"], true);
                }
                catch (System.Exception ex)
                {
                }
            }
            //Refersh(m_type);
        }