/// <summary> /// The table caption did finish with result. /// </summary> /// <param name="tableCaption">The table caption.</param> /// <param name="tableCaptionString">The table caption string.</param> public void TableCaptionDidFinishWithResult(UPConfigTableCaption tableCaption, string tableCaptionString) { Messenger.Default.Send(HeaderBarMessage.HeaderBarTitleUpdate(tableCaptionString)); }
/// <summary> /// The table caption did fail with error. /// </summary> /// <param name="tableCaption">The table caption.</param> /// <param name="error">The error.</param> public void TableCaptionDidFailWithError(UPConfigTableCaption tableCaption, Exception error) { Messenger.Default.Send(HeaderBarMessage.HeaderBarTitleUpdate(string.Empty)); }