/// <summary> /// Posts the specified status message. /// </summary> /// <param name="status">The status message to send.</param> /// <param name="replyTo">The ID of the status message to reply to.</param> public TwitterStatusMessage PostStatusMessage(string status, long?replyTo) { return(TwitterStatusMessage.ParseJson(Raw.PostStatusMessage(status, replyTo))); }
/// <summary> /// Gets information about a status message (tweet) with the specified ID. /// </summary> /// <param name="statusId">The ID of the status message.</param> /// <param name="options">Options affecting the response from the Twitter API.</param> public TwitterStatusMessage GetStatusMessage(long statusId, TwitterStatusMessageOptions options = null) { return(TwitterStatusMessage.ParseJson(Raw.GetStatusMessage(statusId, options))); }