Inheritance: INotifyPropertyChanged
Example #1
0
 private void InvokeNewDataCapturedEventHandler(FiddlerCaptureInformation fiddlerCaptureInformation)
 {
     if (NewDataCapturedEventHandler != null)
     {
         NewDataCapturedEventHandler(this, fiddlerCaptureInformation);
     }
 }
Example #2
0
		private void InvokeNewDataCapturedEventHandler(FiddlerCaptureInformation fiddlerCaptureInformation)
		{
			if (NewDataCapturedEventHandler != null)
			{
				NewDataCapturedEventHandler(this, fiddlerCaptureInformation);
			}
		}
Example #3
0
		private void NewDataCapturedEventHandler(object sender, FiddlerCaptureInformation fiddlerCaptureInformation)
		{
			Task.Factory.StartNew(() =>
			{
				Application.Current.Dispatcher.Invoke(
					DispatcherPriority.Normal,
					(Action) delegate
					{
						FiddlerCaptureInformation.Add(fiddlerCaptureInformation);
					});
			});
		}