// HELP: This method handles the passthrough from the delegates.
		// This is where you would need to update your application to show the logged in state.
		#region UpdateAuthenticationResults
		private void UpdateAuthenticationResults(RallyRestApi.AuthenticationResult authenticationResult, RallyRestApi api)
		{
			authResultLabel.Content = authenticationResult.ToString();
			if (api != null)
			{
				authTypeLabel.Content = api.ConnectionInfo.AuthType.ToString();
				zSessionIDLabel.Content = api.ConnectionInfo.ZSessionID;
			}
			else
			{
				authTypeLabel.Content = "None";
				zSessionIDLabel.Content = String.Empty;
			}
		}