NetIde.Core.Services.NotificationManager.NiNotificationManager.Hide C# (CSharp) Method

Hide() public method

public Hide ( ) : HResult
return HResult
        public HResult Hide()
        {
            try
            {
                if (_window != null)
                    return _window.Frame.Hide();

                return HResult.False;
            }
            catch (Exception ex)
            {
                return ErrorUtil.GetHResult(ex);
            }
        }