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

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

Inheritance diagram for CoreTweet.Rest.Friends:
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 friends.

Member Function Documentation

◆ EnumerateIds() [1/5]

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

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.EnumerateIds ( EnumerateMode  mode,
long  user_id,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.EnumerateIds ( EnumerateMode  mode,
object  parameters 
)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.EnumerateIds ( EnumerateMode  mode,
params Expression< Func< string, object >>[]  parameters 
)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.EnumerateIds ( EnumerateMode  mode,
string  screen_name,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.EnumerateList ( EnumerateMode  mode,
IDictionary< string, object >  parameters 
)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.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 every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.EnumerateList ( EnumerateMode  mode,
object  parameters 
)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.EnumerateList ( EnumerateMode  mode,
params Expression< Func< string, object >>[]  parameters 
)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.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 every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.Ids ( IDictionary< string, object >  parameters)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.Ids ( long  user_id,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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

◆ Ids() [3/5]

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

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.Ids ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.Ids ( string  screen_name,
long?  cursor = null,
int?  count = null 
)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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

◆ IdsAsync() [1/5]

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

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.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 the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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

◆ IdsAsync() [3/5]

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

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.IdsAsync ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user IDs for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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.Friends.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 the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first; however this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 5,000 user IDs and multiple "pages" of results can be navigated through using the next_cursor value in subsequent requests.

This method is especially powerful when used in conjunction with GET users/lookup, a method that allows you to convert user IDs into full user objects in bulk.

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

◆ List() [1/5]

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

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.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 every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.List ( object  parameters)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.List ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.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 every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.ListAsync ( IDictionary< string, object >  parameters,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.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 every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.ListAsync ( object  parameters,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.ListAsync ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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.Friends.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 every user the specified user is following (otherwise known as their "friends").

At this time, results are ordered with the most recent following first — however, this ordering is subject to unannounced change and eventual consistency issues.

Results are given in groups of 20 users and multiple “pages” of results can be navigated through using the next_cursor value in subsequent requests.

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: