pleroma: add docs to PostStatus
This commit is contained in:
parent
fa56e8cb80
commit
95157f1200
1 changed files with 7 additions and 1 deletions
|
@ -99,7 +99,13 @@ public class Pleroma
|
|||
/// <summary>
|
||||
/// Posts a status.
|
||||
/// </summary>
|
||||
/// <param name="status">The status data to send, including the content, visibility, etc.</param>
|
||||
/// <param name="content">Text content of the status.</param>
|
||||
/// <param name="sensitive">Mark status and attached media as sensitive?</param>
|
||||
/// <param name="expiresIn">The number of seconds the posted activity should expire in. When a posted activity expires it will be deleted from the server, and a delete request for it will be federated. This needs to be longer than an hour.</param>
|
||||
/// <param name="replyTo">ID of the status being replied to, if status is a reply</param>
|
||||
/// <param name="quoting"> ID of the status being quoted.</param>
|
||||
/// <param name="language">ISO 639 language code for this status.</param>
|
||||
/// <param name="visibility">Visibility of the posted status.</param>
|
||||
/// <exception cref="HttpRequestException">Thrown if something goes wrong while uploading the status.</exception>
|
||||
/// <returns>The status if posting was successful.</returns>
|
||||
public Task<Status> PostStatus(string content,
|
||||
|
|
Loading…
Reference in a new issue