CoreTweet
2.0.0-beta.2
Yet another .NET Twitter Library
|
Provides a set of methods for the wrapper of GET/POST direct_messages. More...
Public Member Functions | |
ListedResponse< DirectMessage > | Received (params Expression< Func< string, object >>[] parameters) |
ListedResponse< DirectMessage > | Received (IDictionary< string, object > parameters) |
ListedResponse< DirectMessage > | Received (object parameters) |
ListedResponse< DirectMessage > | Received (long? since_id=null, long? max_id=null, int? count=null, int? page=null, bool? full_text=null, bool? include_entities=null) |
Task< ListedResponse< DirectMessage > > | ReceivedAsync (params Expression< Func< string, object >>[] parameters) |
Task< ListedResponse< DirectMessage > > | ReceivedAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< ListedResponse< DirectMessage > > | ReceivedAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< ListedResponse< DirectMessage > > | ReceivedAsync (long? since_id=null, long? max_id=null, int? count=null, int? page=null, bool? full_text=null, bool? include_entities=null, CancellationToken cancellationToken=default(CancellationToken)) |
ListedResponse< DirectMessage > | Sent (params Expression< Func< string, object >>[] parameters) |
ListedResponse< DirectMessage > | Sent (IDictionary< string, object > parameters) |
ListedResponse< DirectMessage > | Sent (object parameters) |
ListedResponse< DirectMessage > | Sent (long? since_id=null, long? max_id=null, int? count=null, int? page=null, bool? full_text=null, bool? include_entities=null) |
Task< ListedResponse< DirectMessage > > | SentAsync (params Expression< Func< string, object >>[] parameters) |
Task< ListedResponse< DirectMessage > > | SentAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< ListedResponse< DirectMessage > > | SentAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< ListedResponse< DirectMessage > > | SentAsync (long? since_id=null, long? max_id=null, int? count=null, int? page=null, bool? full_text=null, bool? include_entities=null, CancellationToken cancellationToken=default(CancellationToken)) |
DirectMessageResponse | Show (params Expression< Func< string, object >>[] parameters) |
DirectMessageResponse | Show (IDictionary< string, object > parameters) |
DirectMessageResponse | Show (object parameters) |
DirectMessageResponse | Show (long id, bool? full_text=null) |
Task< DirectMessageResponse > | ShowAsync (params Expression< Func< string, object >>[] parameters) |
Task< DirectMessageResponse > | ShowAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< DirectMessageResponse > | ShowAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< DirectMessageResponse > | ShowAsync (long id, bool? full_text=null, CancellationToken cancellationToken=default(CancellationToken)) |
DirectMessageResponse | New (params Expression< Func< string, object >>[] parameters) |
DirectMessageResponse | New (IDictionary< string, object > parameters) |
DirectMessageResponse | New (object parameters) |
DirectMessageResponse | New (long user_id, string text) |
DirectMessageResponse | New (string screen_name, string text) |
Task< DirectMessageResponse > | NewAsync (params Expression< Func< string, object >>[] parameters) |
Task< DirectMessageResponse > | NewAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< DirectMessageResponse > | NewAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< DirectMessageResponse > | NewAsync (long user_id, string text, CancellationToken cancellationToken=default(CancellationToken)) |
Task< DirectMessageResponse > | NewAsync (string screen_name, string text, CancellationToken cancellationToken=default(CancellationToken)) |
DirectMessageResponse | Destroy (params Expression< Func< string, object >>[] parameters) |
DirectMessageResponse | Destroy (IDictionary< string, object > parameters) |
DirectMessageResponse | Destroy (object parameters) |
DirectMessageResponse | Destroy (long id, bool? include_entities=null) |
Task< DirectMessageResponse > | DestroyAsync (params Expression< Func< string, object >>[] parameters) |
Task< DirectMessageResponse > | DestroyAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< DirectMessageResponse > | DestroyAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task< DirectMessageResponse > | DestroyAsync (long id, bool? include_entities=null, CancellationToken cancellationToken=default(CancellationToken)) |
void | MarkRead (params Expression< Func< string, object >>[] parameters) |
void | MarkRead (IDictionary< string, object > parameters) |
void | MarkRead (object parameters) |
void | MarkRead (long last_read_event_id, long recipient_id) |
Task | MarkReadAsync (params Expression< Func< string, object >>[] parameters) |
Task | MarkReadAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task | MarkReadAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task | MarkReadAsync (long last_read_event_id, long recipient_id, CancellationToken cancellationToken=default(CancellationToken)) |
void | IndicateTyping (params Expression< Func< string, object >>[] parameters) |
void | IndicateTyping (IDictionary< string, object > parameters) |
void | IndicateTyping (object parameters) |
void | IndicateTyping (long recipient_id) |
Task | IndicateTypingAsync (params Expression< Func< string, object >>[] parameters) |
Task | IndicateTypingAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task | IndicateTypingAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken)) |
Task | IndicateTypingAsync (long recipient_id, CancellationToken cancellationToken=default(CancellationToken)) |
Public Attributes | |
DirectMessagesEvents | Events => new DirectMessagesEvents(this.Tokens) |
Gets the wrapper of direct_messages/events. More... | |
WelcomeMessages | WelcomeMessages => new WelcomeMessages(this.Tokens) |
Gets the wrapper of direct_messages/welcome_messages. More... | |
Provides a set of methods for the wrapper of GET/POST direct_messages.
|
inline |
Destroys the direct message specified in the required ID parameter.
Available parameters:
- long
id (required)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Destroys the direct message specified in the required ID parameter.
id | required. |
include_entities | optional. |
|
inline |
Destroys the direct message specified in the required ID parameter.
Available parameters:
- long
id (required)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Destroys the direct message specified in the required ID parameter.
Available parameters:
- long
id (required)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Destroys the direct message specified in the required ID parameter.
Available parameters:
- long
id (required)
- bool
include_entities (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Destroys the direct message specified in the required ID parameter.
id | required. |
include_entities | optional. |
cancellationToken | The cancellation token. |
|
inline |
Destroys the direct message specified in the required ID parameter.
Available parameters:
- long
id (required)
- bool
include_entities (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Destroys the direct message specified in the required ID parameter.
Available parameters:
- long
id (required)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
recipient_id | required. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
recipient_id (required)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
recipient_id | required. |
cancellationToken | The cancellation token. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
recipient_id (required)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Displays a visual typing indicator in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
last_read_event_id (required)
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
last_read_event_id | required. |
recipient_id | required. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
last_read_event_id (required)
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
last_read_event_id (required)
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
last_read_event_id (required)
- long
recipient_id (required)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
last_read_event_id | required. |
recipient_id | required. |
cancellationToken | The cancellation token. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
last_read_event_id (required)
- long
recipient_id (required)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Marks a message as read in the recipient’s Direct Message conversation view with the sender.
Available parameters:
- long
last_read_event_id (required)
- long
recipient_id (required)
parameters | The parameters. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
Available parameters:
- long
user_id (any one is required)
- string
screen_name (any one is required)
- string
text (required)
parameters | The parameters. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
user_id | any one is required. |
text | required. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
Available parameters:
- long
user_id (any one is required)
- string
screen_name (any one is required)
- string
text (required)
parameters | The parameters. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
Available parameters:
- long
user_id (any one is required)
- string
screen_name (any one is required)
- string
text (required)
parameters | The parameters. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
screen_name | any one is required. |
text | required. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
Available parameters:
- long
user_id (any one is required)
- string
screen_name (any one is required)
- string
text (required)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
user_id | any one is required. |
text | required. |
cancellationToken | The cancellation token. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
Available parameters:
- long
user_id (any one is required)
- string
screen_name (any one is required)
- string
text (required)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
Available parameters:
- long
user_id (any one is required)
- string
screen_name (any one is required)
- string
text (required)
parameters | The parameters. |
|
inline |
Sends a new direct message to the specified user from the authenticating user.
screen_name | any one is required. |
text | required. |
cancellationToken | The cancellation token. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
since_id | optional. |
max_id | optional. |
count | optional. |
page | optional. |
full_text | optional. |
include_entities | optional. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
since_id | optional. |
max_id | optional. |
count | optional. |
page | optional. |
full_text | optional. |
include_entities | optional. |
cancellationToken | The cancellation token. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Returns the most recent direct messages sent to the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
since_id | optional. |
max_id | optional. |
count | optional. |
page | optional. |
full_text | optional. |
include_entities | optional. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
since_id | optional. |
max_id | optional. |
count | optional. |
page | optional. |
full_text | optional. |
include_entities | optional. |
cancellationToken | The cancellation token. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Returns the most recent direct messages sent by the authenticating user.
Available parameters:
- long
since_id (optional)
- long
max_id (optional)
- int
count (optional)
- int
page (optional)
- bool
full_text (optional)
- bool
include_entities (optional)
parameters | The parameters. |
|
inline |
Returns a single direct message, specified by an id parameter.
Available parameters:
- long
id (required)
- bool
full_text (optional)
parameters | The parameters. |
|
inline |
Returns a single direct message, specified by an id parameter.
id | required. |
full_text | optional. |
|
inline |
Returns a single direct message, specified by an id parameter.
Available parameters:
- long
id (required)
- bool
full_text (optional)
parameters | The parameters. |
|
inline |
Returns a single direct message, specified by an id parameter.
Available parameters:
- long
id (required)
- bool
full_text (optional)
parameters | The parameters. |
|
inline |
Returns a single direct message, specified by an id parameter.
Available parameters:
- long
id (required)
- bool
full_text (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Returns a single direct message, specified by an id parameter.
id | required. |
full_text | optional. |
cancellationToken | The cancellation token. |
|
inline |
Returns a single direct message, specified by an id parameter.
Available parameters:
- long
id (required)
- bool
full_text (optional)
parameters | The parameters. |
cancellationToken | The cancellation token. |
|
inline |
Returns a single direct message, specified by an id parameter.
Available parameters:
- long
id (required)
- bool
full_text (optional)
parameters | The parameters. |
DirectMessagesEvents CoreTweet.Rest.DirectMessages.Events => new DirectMessagesEvents(this.Tokens) |
Gets the wrapper of direct_messages/events.
WelcomeMessages CoreTweet.Rest.DirectMessages.WelcomeMessages => new WelcomeMessages(this.Tokens) |
Gets the wrapper of direct_messages/welcome_messages.