Tp.Integration.Ide.VisualStudio.Connect.OnConnectionStateChange C# (CSharp) Method

OnConnectionStateChange() private method

Receives notification that the connection state has changed.
private OnConnectionStateChange ( object sender, ConnectionStateEventArgs e ) : void
sender object
e Tp.Integration.Ide.VisualStudio.Services.ConnectionStateEventArgs
return void
		private void OnConnectionStateChange(object sender, ConnectionStateEventArgs e)
		{
			_toolWindow.Caption = e.Connected ? String.Format("TargetProcess Window - Connected to {0}", e.Uri) : "TargetProcess Window - Disconnected";
		}