RedditSharp.Things.Subreddit.SubmitTextPost C# (CSharp) Méthode

SubmitTextPost() public méthode

Submits a text post in the current subreddit using the logged-in user
public SubmitTextPost ( string title, string text, string captchaId = "", string captchaAnswer = "" ) : Post
title string The title of the submission
text string The raw markdown text of the submission
captchaId string
captchaAnswer string
Résultat Post
        public Post SubmitTextPost(string title, string text, string captchaId = "", string captchaAnswer = "")
        {
            return
                Submit(
                    new TextData
                    {
                        Subreddit = Name,
                        UserHash = Reddit.User.Modhash,
                        Title = title,
                        Text = text,
                        Iden = captchaId,
                        Captcha = captchaAnswer
                    });
        }
        /// <summary>