Blog.Web.Api.Helper.Hub.CommentsHub.CommentAddedForPost C# (CSharp) Method

CommentAddedForPost() public method

public CommentAddedForPost ( CommentAdded commentAdded ) : void
commentAdded Blog.Common.Contracts.ViewModels.SocketViewModels.CommentAdded
return void
        public void CommentAddedForPost(CommentAdded commentAdded)
        {
            try
            {
                _httpClientHelper.Post(_configurationHelper.GetAppSettings("BlogRoot"), "hub/commentAddedForPost?format=json", commentAdded);
            }
            catch (Exception ex)
            {
                _errorSignaler.SignalFromCurrentContext(ex);
            }
        }
    }