TeamMentor.CoreLib.TM_WebServices.SetArticleHtml C# (CSharp) Method

SetArticleHtml() private method

private SetArticleHtml ( System.Guid articleId, string htmlContent ) : bool
articleId System.Guid
htmlContent string
return bool
        public bool SetArticleHtml(Guid articleId,string htmlContent)
        {
            editArticles.demand();
                                                                return SetArticleContent(articleId, "html", htmlContent);
        }
TM_WebServices