Exemplo n.º 1
0
 /// <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);
 }
Exemplo n.º 2
0
 /// <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);
 }
Exemplo n.º 3
0
 /// <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);
 }