CoreTweet  2.0.0-beta.2
Yet another .NET Twitter Library
Public Member Functions | List of all members
CoreTweet.Rest.Followers Class Reference

Provides a set of methods for the wrapper of GET followers. More...

Inheritance diagram for CoreTweet.Rest.Followers:
CoreTweet.Core.ApiProviderBase

Public Member Functions

Cursored< long > Ids (params Expression< Func< string, object >>[] parameters)
 
Cursored< long > Ids (IDictionary< string, object > parameters)
 
Cursored< long > Ids (object parameters)
 
IEnumerable< long > EnumerateIds (EnumerateMode mode, long user_id, long? cursor=null, int? count=null)
 
Cursored< long > Ids (long user_id, long? cursor=null, int? count=null)
 
IEnumerable< long > EnumerateIds (EnumerateMode mode, string screen_name, long? cursor=null, int? count=null)
 
Cursored< long > Ids (string screen_name, long? cursor=null, int? count=null)
 
IEnumerable< long > EnumerateIds (EnumerateMode mode, params Expression< Func< string, object >>[] parameters)
 
IEnumerable< long > EnumerateIds (EnumerateMode mode, IDictionary< string, object > parameters)
 
IEnumerable< long > EnumerateIds (EnumerateMode mode, object parameters)
 
Task< Cursored< long > > IdsAsync (params Expression< Func< string, object >>[] parameters)
 
Task< Cursored< long > > IdsAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken))
 
Task< Cursored< long > > IdsAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken))
 
Task< Cursored< long > > IdsAsync (long user_id, long? cursor=null, int? count=null, CancellationToken cancellationToken=default(CancellationToken))
 
Task< Cursored< long > > IdsAsync (string screen_name, long? cursor=null, int? count=null, CancellationToken cancellationToken=default(CancellationToken))
 
Cursored< UserList (params Expression< Func< string, object >>[] parameters)
 
Cursored< UserList (IDictionary< string, object > parameters)
 
Cursored< UserList (object parameters)
 
IEnumerable< UserEnumerateList (EnumerateMode mode, long user_id, long? cursor=null, int? count=null, bool? skip_status=null, bool? include_user_entities=null, bool? include_ext_alt_text=null, TweetMode? tweet_mode=null)
 
Cursored< UserList (long user_id, long? cursor=null, int? count=null, bool? skip_status=null, bool? include_user_entities=null, bool? include_ext_alt_text=null, TweetMode? tweet_mode=null)
 
IEnumerable< UserEnumerateList (EnumerateMode mode, string screen_name, long? cursor=null, int? count=null, bool? skip_status=null, bool? include_user_entities=null, bool? include_ext_alt_text=null, TweetMode? tweet_mode=null)
 
Cursored< UserList (string screen_name, long? cursor=null, int? count=null, bool? skip_status=null, bool? include_user_entities=null, bool? include_ext_alt_text=null, TweetMode? tweet_mode=null)
 
IEnumerable< UserEnumerateList (EnumerateMode mode, params Expression< Func< string, object >>[] parameters)
 
IEnumerable< UserEnumerateList (EnumerateMode mode, IDictionary< string, object > parameters)
 
IEnumerable< UserEnumerateList (EnumerateMode mode, object parameters)
 
Task< Cursored< User > > ListAsync (params Expression< Func< string, object >>[] parameters)
 
Task< Cursored< User > > ListAsync (IDictionary< string, object > parameters, CancellationToken cancellationToken=default(CancellationToken))
 
Task< Cursored< User > > ListAsync (object parameters, CancellationToken cancellationToken=default(CancellationToken))
 
Task< Cursored< User > > ListAsync (long user_id, long? cursor=null, int? count=null, bool? skip_status=null, bool? include_user_entities=null, bool? include_ext_alt_text=null, TweetMode? tweet_mode=null, CancellationToken cancellationToken=default(CancellationToken))
 
Task< Cursored< User > > ListAsync (string screen_name, long? cursor=null, int? count=null, bool? skip_status=null, bool? include_user_entities=null, bool? include_ext_alt_text=null, TweetMode? tweet_mode=null, CancellationToken cancellationToken=default(CancellationToken))
 

Additional Inherited Members

- Public Attributes inherited from CoreTweet.Core.ApiProviderBase
TokensBase IncludedTokens => this.Tokens
 Gets the tokens being used in this instance. More...
 
- Properties inherited from CoreTweet.Core.ApiProviderBase
TokensBase Tokens [get, set]
 Gets or sets the OAuth tokens. More...
 

Detailed Description

Provides a set of methods for the wrapper of GET followers.

Member Function Documentation

◆ EnumerateIds() [1/5]

IEnumerable<long> CoreTweet.Rest.Followers.EnumerateIds ( EnumerateMode  mode,
IDictionary< string, object >  parameters 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The IDs.

◆ EnumerateIds() [2/5]

IEnumerable<long> CoreTweet.Rest.Followers.EnumerateIds ( EnumerateMode  mode,
long  user_id,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Parameters
user_idany one is required.
cursorsemi-optional.
countoptional.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The IDs.

◆ EnumerateIds() [3/5]

IEnumerable<long> CoreTweet.Rest.Followers.EnumerateIds ( EnumerateMode  mode,
object  parameters 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The IDs.

◆ EnumerateIds() [4/5]

IEnumerable<long> CoreTweet.Rest.Followers.EnumerateIds ( EnumerateMode  mode,
params Expression< Func< string, object >>[]  parameters 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The IDs.

◆ EnumerateIds() [5/5]

IEnumerable<long> CoreTweet.Rest.Followers.EnumerateIds ( EnumerateMode  mode,
string  screen_name,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Parameters
screen_nameany one is required.
cursorsemi-optional.
countoptional.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The IDs.

◆ EnumerateList() [1/5]

IEnumerable<User> CoreTweet.Rest.Followers.EnumerateList ( EnumerateMode  mode,
IDictionary< string, object >  parameters 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The users.

◆ EnumerateList() [2/5]

IEnumerable<User> CoreTweet.Rest.Followers.EnumerateList ( EnumerateMode  mode,
long  user_id,
long?  cursor = null,
int?  count = null,
bool?  skip_status = null,
bool?  include_user_entities = null,
bool?  include_ext_alt_text = null,
TweetMode tweet_mode = null 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Parameters
user_idany one is required.
cursorsemi-optional.
countoptional.
skip_statusoptional.
include_user_entitiesoptional.
include_ext_alt_textoptional.
tweet_modeoptional.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The users.

◆ EnumerateList() [3/5]

IEnumerable<User> CoreTweet.Rest.Followers.EnumerateList ( EnumerateMode  mode,
object  parameters 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The users.

◆ EnumerateList() [4/5]

IEnumerable<User> CoreTweet.Rest.Followers.EnumerateList ( EnumerateMode  mode,
params Expression< Func< string, object >>[]  parameters 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The users.

◆ EnumerateList() [5/5]

IEnumerable<User> CoreTweet.Rest.Followers.EnumerateList ( EnumerateMode  mode,
string  screen_name,
long?  cursor = null,
int?  count = null,
bool?  skip_status = null,
bool?  include_user_entities = null,
bool?  include_ext_alt_text = null,
TweetMode tweet_mode = null 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Parameters
screen_nameany one is required.
cursorsemi-optional.
countoptional.
skip_statusoptional.
include_user_entitiesoptional.
include_ext_alt_textoptional.
tweet_modeoptional.
modeSpecify whether enumerating goes to the next page or the previous.
Returns
The users.

◆ Ids() [1/5]

Cursored<long> CoreTweet.Rest.Followers.Ids ( IDictionary< string, object >  parameters)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
Returns
The IDs.

◆ Ids() [2/5]

Cursored<long> CoreTweet.Rest.Followers.Ids ( long  user_id,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Parameters
user_idany one is required.
cursorsemi-optional.
countoptional.
Returns
The IDs.

◆ Ids() [3/5]

Cursored<long> CoreTweet.Rest.Followers.Ids ( object  parameters)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
Returns
The IDs.

◆ Ids() [4/5]

Cursored<long> CoreTweet.Rest.Followers.Ids ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
Returns
The IDs.

◆ Ids() [5/5]

Cursored<long> CoreTweet.Rest.Followers.Ids ( string  screen_name,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Parameters
screen_nameany one is required.
cursorsemi-optional.
countoptional.
Returns
The IDs.

◆ IdsAsync() [1/5]

Task<Cursored<long> > CoreTweet.Rest.Followers.IdsAsync ( IDictionary< string, object >  parameters,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
cancellationTokenThe cancellation token.
Returns
The IDs.

◆ IdsAsync() [2/5]

Task<Cursored<long> > CoreTweet.Rest.Followers.IdsAsync ( long  user_id,
long?  cursor = null,
int?  count = null,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Parameters
user_idany one is required.
cursorsemi-optional.
countoptional.
cancellationTokenThe cancellation token.
Returns
The IDs.

◆ IdsAsync() [3/5]

Task<Cursored<long> > CoreTweet.Rest.Followers.IdsAsync ( object  parameters,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
cancellationTokenThe cancellation token.
Returns
The IDs.

◆ IdsAsync() [4/5]

Task<Cursored<long> > CoreTweet.Rest.Followers.IdsAsync ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

Parameters
parametersThe parameters.
Returns
The IDs.

◆ IdsAsync() [5/5]

Task<Cursored<long> > CoreTweet.Rest.Followers.IdsAsync ( string  screen_name,
long?  cursor = null,
int?  count = null,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user IDs for every user following the specified user.

Parameters
screen_nameany one is required.
cursorsemi-optional.
countoptional.
cancellationTokenThe cancellation token.
Returns
The IDs.

◆ List() [1/5]

Cursored<User> CoreTweet.Rest.Followers.List ( IDictionary< string, object >  parameters)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
Returns
The users.

◆ List() [2/5]

Cursored<User> CoreTweet.Rest.Followers.List ( long  user_id,
long?  cursor = null,
int?  count = null,
bool?  skip_status = null,
bool?  include_user_entities = null,
bool?  include_ext_alt_text = null,
TweetMode tweet_mode = null 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Parameters
user_idany one is required.
cursorsemi-optional.
countoptional.
skip_statusoptional.
include_user_entitiesoptional.
include_ext_alt_textoptional.
tweet_modeoptional.
Returns
The users.

◆ List() [3/5]

Cursored<User> CoreTweet.Rest.Followers.List ( object  parameters)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
Returns
The users.

◆ List() [4/5]

Cursored<User> CoreTweet.Rest.Followers.List ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
Returns
The users.

◆ List() [5/5]

Cursored<User> CoreTweet.Rest.Followers.List ( string  screen_name,
long?  cursor = null,
int?  count = null,
bool?  skip_status = null,
bool?  include_user_entities = null,
bool?  include_ext_alt_text = null,
TweetMode tweet_mode = null 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Parameters
screen_nameany one is required.
cursorsemi-optional.
countoptional.
skip_statusoptional.
include_user_entitiesoptional.
include_ext_alt_textoptional.
tweet_modeoptional.
Returns
The users.

◆ ListAsync() [1/5]

Task<Cursored<User> > CoreTweet.Rest.Followers.ListAsync ( IDictionary< string, object >  parameters,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
cancellationTokenThe cancellation token.
Returns
The users.

◆ ListAsync() [2/5]

Task<Cursored<User> > CoreTweet.Rest.Followers.ListAsync ( long  user_id,
long?  cursor = null,
int?  count = null,
bool?  skip_status = null,
bool?  include_user_entities = null,
bool?  include_ext_alt_text = null,
TweetMode tweet_mode = null,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Parameters
user_idany one is required.
cursorsemi-optional.
countoptional.
skip_statusoptional.
include_user_entitiesoptional.
include_ext_alt_textoptional.
tweet_modeoptional.
cancellationTokenThe cancellation token.
Returns
The users.

◆ ListAsync() [3/5]

Task<Cursored<User> > CoreTweet.Rest.Followers.ListAsync ( object  parameters,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
cancellationTokenThe cancellation token.
Returns
The users.

◆ ListAsync() [4/5]

Task<Cursored<User> > CoreTweet.Rest.Followers.ListAsync ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user objects for users following the specified user.

Available parameters:

- long user_id (any one is required)

- string screen_name (any one is required)

- long cursor (semi-optional)

- int count (optional)

- bool skip_status (optional)

- bool include_user_entities (optional)

- bool include_ext_alt_text (optional)

- TweetMode tweet_mode (optional)

Parameters
parametersThe parameters.
Returns
The users.

◆ ListAsync() [5/5]

Task<Cursored<User> > CoreTweet.Rest.Followers.ListAsync ( string  screen_name,
long?  cursor = null,
int?  count = null,
bool?  skip_status = null,
bool?  include_user_entities = null,
bool?  include_ext_alt_text = null,
TweetMode tweet_mode = null,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user objects for users following the specified user.

Parameters
screen_nameany one is required.
cursorsemi-optional.
countoptional.
skip_statusoptional.
include_user_entitiesoptional.
include_ext_alt_textoptional.
tweet_modeoptional.
cancellationTokenThe cancellation token.
Returns
The users.

The documentation for this class was generated from the following file: