Catel.Android.App.Activity.OnPause C# (CSharp) Method

OnPause() protected method

Called as part of the activity lifecycle when an activity is going into the background, but has not (yet) been killed.
protected OnPause ( ) : void
return void
        protected override void OnPause()
        {
            base.OnPause();

            // Note: call *after* base so NavigationAdapter always gets called
            Unloaded.SafeInvoke(this);

            UninitializeBindingContext();
        }