Blog.Web.Api.Controllers.DebugController.Post C# (CSharp) Method

Post() private method

private Post ( [ comment ) : bool
comment [
return bool
        public bool Post([FromBody] Comment comment)
        {
            try
            {
                return true;
            }
            catch
            {
                return false;
            }
        }
    }
DebugController