private void InvestigationActionHandler(OpenedInvestigationMessage message)
        {
            var cinv = message.InvestigationVm as InvestigationVm;

            if (cinv != null)
            {
                this.CurrentInvestigation = cinv;
            }
        }
        private void OpenedInvestigationMessageReceived(OpenedInvestigationMessage msg)
        {
            this.SetIsSelectedInvestigation(false);
            this.InvestigationVm = msg.InvestigationVm as InvestigationVm;
            this.SetIsSelectedInvestigation(this.IsSelected);

            this.CAddCapture.RaiseCanExecuteChanged();
            this.CAddNewGroup.RaiseCanExecuteChanged();
            this.CAddLog.RaiseCanExecuteChanged();
        }
        private void OpenedInvestigationMessageReceived(OpenedInvestigationMessage msg)
        {
            this.InvestigationVm = msg.InvestigationVm as InvestigationVm;

            if (this.InvestigationVm == null)
            {
                return;
            }

            this.InvestigationVm.ToExportConversations.CollectionChanged += this.ToExportConversationsOnCollectionChanged;
        }
Esempio n. 4
0
        private void OpenedInvestigationMessageReceived(OpenedInvestigationMessage msg)
        {
            var investigation = msg.Investigation as Investigation;

            this.NetfoxLogger.ChangeLoggingDirectory(investigation?.InvestigationInfo?.LogsDirectoryInfo);
        }
Esempio n. 5
0
 private void OpenedInvestigationMessageReceived(OpenedInvestigationMessage msg)
 {
     this.CurrentInvestigationVm = msg.InvestigationVm as InvestigationVm;
 }
 private void OpenedInvestigationMessageReceived(OpenedInvestigationMessage msg)
 {
     this.CDeleteInvestigation.RaiseCanExecuteChanged();
 }