/// <summary> /// To call the event <see cref="LookupBoardsResult"/>. /// </summary> /// <param name="message">Message.</param> /// <param name="error">An error of lookup operation. The value will be <see langword="null"/> if operation complete successfully.</param> /// <param name="boards">Found boards.</param> private void RaiseLookupBoardsResult(BoardLookupMessage message, Exception error, IEnumerable <ExchangeBoard> boards) { LookupBoardsResult?.Invoke(message, boards, error); }
/// <summary> /// To call the event <see cref="LookupBoardsResult"/>. /// </summary> /// <param name="error">An error of lookup operation. The value will be <see langword="null"/> if operation complete successfully.</param> /// <param name="boards">Found boards.</param> private void RaiseLookupBoardsResult(Exception error, IEnumerable <ExchangeBoard> boards) { LookupBoardsResult?.Invoke(error, boards); }
/// <summary> /// To call the event <see cref="LookupBoardsResult"/>. /// </summary> /// <param name="message">Message.</param> /// <param name="error">An error of lookup operation. The value will be <see langword="null"/> if operation complete successfully.</param> /// <param name="boards">Found boards.</param> /// <param name="newBoards">Newly created.</param> private void RaiseLookupBoardsResult(BoardLookupMessage message, Exception error, ExchangeBoard[] boards, ExchangeBoard[] newBoards) { LookupBoardsResult?.Invoke(message, boards, error); LookupBoardsResult2?.Invoke(message, boards, newBoards, error); }