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

Represents the wrapper for the Twitter Streaming API. More...

Inheritance diagram for CoreTweet.Streaming.StreamingApi:
CoreTweet.Core.ApiProviderBase

Public Member Functions

IEnumerable< StreamingMessageStartStream (StreamingType type, StreamingParameters parameters=null)
 Starts the Twitter stream. More...
 
Task< IEnumerable< StreamingMessage > > StartStreamAsync (StreamingType type, StreamingParameters parameters=null, CancellationToken cancellationToken=default(CancellationToken))
 Starts the Twitter stream asynchronously. More...
 
IEnumerable< StreamingMessageUser (params Expression< Func< string, object >>[] parameters)
 Streams messages for a single user. More...
 
IEnumerable< StreamingMessageUser (IDictionary< string, object > parameters)
 Streams messages for a single user. More...
 
IEnumerable< StreamingMessageUser (object parameters)
 Streams messages for a single user. More...
 
IEnumerable< StreamingMessageUser (bool? stall_warnings=null, string with=null, string replies=null, string track=null, IEnumerable< double > locations=null)
 Streams messages for a single user. More...
 
IEnumerable< StreamingMessageSite (params Expression< Func< string, object >>[] parameters)
 Streams messages for a set of users. More...
 
IEnumerable< StreamingMessageSite (IDictionary< string, object > parameters)
 Streams messages for a set of users. More...
 
IEnumerable< StreamingMessageSite (object parameters)
 Streams messages for a set of users. More...
 
IEnumerable< StreamingMessageSite (IEnumerable< long > follow, bool? stall_warnings=null, string with=null, string replies=null)
 Streams messages for a set of users. More...
 
IEnumerable< StreamingMessageFilter (params Expression< Func< string, object >>[] parameters)
 Returns public statuses that match one or more filter predicates. More...
 
IEnumerable< StreamingMessageFilter (IDictionary< string, object > parameters)
 Returns public statuses that match one or more filter predicates. More...
 
IEnumerable< StreamingMessageFilter (object parameters)
 Returns public statuses that match one or more filter predicates. More...
 
IEnumerable< StreamingMessageFilter (IEnumerable< long > follow=null, string track=null, IEnumerable< double > locations=null, bool? stall_warnings=null)
 Returns public statuses that match one or more filter predicates. More...
 
IEnumerable< StreamingMessageSample (params Expression< Func< string, object >>[] parameters)
 Returns a small random sample of all public statuses. More...
 
IEnumerable< StreamingMessageSample (IDictionary< string, object > parameters)
 Returns a small random sample of all public statuses. More...
 
IEnumerable< StreamingMessageSample (object parameters)
 Returns a small random sample of all public statuses. More...
 
IEnumerable< StreamingMessageSample (bool? stall_warnings=null)
 Returns a small random sample of all public statuses. More...
 
IEnumerable< StreamingMessageFirehose (params Expression< Func< string, object >>[] parameters)
 Returns all public statuses. Few applications require this level of access. More...
 
IEnumerable< StreamingMessageFirehose (IDictionary< string, object > parameters)
 Returns all public statuses. Few applications require this level of access. More...
 
IEnumerable< StreamingMessageFirehose (object parameters)
 Returns all public statuses. Few applications require this level of access. More...
 
IEnumerable< StreamingMessageFirehose (int? count=null, bool? stall_warnings=null)
 Returns all public statuses. Few applications require this level of access. More...
 
IObservable< StreamingMessageUserAsObservable (params Expression< Func< string, object >>[] parameters)
 Streams messages for a single user. More...
 
IObservable< StreamingMessageUserAsObservable (IDictionary< string, object > parameters)
 Streams messages for a single user. More...
 
IObservable< StreamingMessageUserAsObservable (object parameters)
 Streams messages for a single user. More...
 
IObservable< StreamingMessageUserAsObservable (bool? stall_warnings=null, string with=null, string replies=null, string track=null, IEnumerable< double > locations=null)
 Streams messages for a single user. More...
 
IObservable< StreamingMessageSiteAsObservable (params Expression< Func< string, object >>[] parameters)
 Streams messages for a set of users. More...
 
IObservable< StreamingMessageSiteAsObservable (IDictionary< string, object > parameters)
 Streams messages for a set of users. More...
 
IObservable< StreamingMessageSiteAsObservable (object parameters)
 Streams messages for a set of users. More...
 
IObservable< StreamingMessageSiteAsObservable (IEnumerable< long > follow, bool? stall_warnings=null, string with=null, string replies=null)
 Streams messages for a set of users. More...
 
IObservable< StreamingMessageFilterAsObservable (params Expression< Func< string, object >>[] parameters)
 Returns public statuses that match one or more filter predicates. More...
 
IObservable< StreamingMessageFilterAsObservable (IDictionary< string, object > parameters)
 Returns public statuses that match one or more filter predicates. More...
 
IObservable< StreamingMessageFilterAsObservable (object parameters)
 Returns public statuses that match one or more filter predicates. More...
 
IObservable< StreamingMessageFilterAsObservable (IEnumerable< long > follow=null, string track=null, IEnumerable< double > locations=null, bool? stall_warnings=null)
 Returns public statuses that match one or more filter predicates. More...
 
IObservable< StreamingMessageSampleAsObservable (params Expression< Func< string, object >>[] parameters)
 Returns a small random sample of all public statuses. More...
 
IObservable< StreamingMessageSampleAsObservable (IDictionary< string, object > parameters)
 Returns a small random sample of all public statuses. More...
 
IObservable< StreamingMessageSampleAsObservable (object parameters)
 Returns a small random sample of all public statuses. More...
 
IObservable< StreamingMessageSampleAsObservable (bool? stall_warnings=null)
 Returns a small random sample of all public statuses. More...
 
IObservable< StreamingMessageFirehoseAsObservable (params Expression< Func< string, object >>[] parameters)
 Returns all public statuses. Few applications require this level of access. More...
 
IObservable< StreamingMessageFirehoseAsObservable (IDictionary< string, object > parameters)
 Returns all public statuses. Few applications require this level of access. More...
 
IObservable< StreamingMessageFirehoseAsObservable (object parameters)
 Returns all public statuses. Few applications require this level of access. More...
 
IObservable< StreamingMessageFirehoseAsObservable (int? count=null, bool? stall_warnings=null)
 Returns all public statuses. Few applications require this level of access. More...
 

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

Represents the wrapper for the Twitter Streaming API.

Member Function Documentation

◆ Filter() [1/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Filter ( IDictionary< string, object >  parameters)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Available parameters:

- IEnumerable<long> follow (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Filter() [2/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Filter ( IEnumerable< long >  follow = null,
string  track = null,
IEnumerable< double >  locations = null,
bool?  stall_warnings = null 
)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Parameters
followA comma separated list of user IDs, indicating the users to return statuses for in the stream.
trackKeywords to track. Phrases of keywords are specified by a comma-separated list.
locationsSpecifies a set of bounding boxes to track.
stall_warningsSpecifies whether stall warnings should be delivered.
Returns
The stream messages.

◆ Filter() [3/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Filter ( object  parameters)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Available parameters:

- IEnumerable<long> follow (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Filter() [4/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Filter ( params Expression< Func< string, object >>[]  parameters)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Available parameters:

- IEnumerable<long> follow (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ FilterAsObservable() [1/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FilterAsObservable ( IDictionary< string, object >  parameters)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Available parameters:

- IEnumerable<long> follow (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ FilterAsObservable() [2/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FilterAsObservable ( IEnumerable< long >  follow = null,
string  track = null,
IEnumerable< double >  locations = null,
bool?  stall_warnings = null 
)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Parameters
followA comma separated list of user IDs, indicating the users to return statuses for in the stream.
trackKeywords to track. Phrases of keywords are specified by a comma-separated list.
locationsSpecifies a set of bounding boxes to track.
stall_warningsSpecifies whether stall warnings should be delivered.
Returns
The stream messages.

◆ FilterAsObservable() [3/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FilterAsObservable ( object  parameters)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Available parameters:

- IEnumerable<long> follow (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ FilterAsObservable() [4/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FilterAsObservable ( params Expression< Func< string, object >>[]  parameters)
inline

Returns public statuses that match one or more filter predicates.

Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API.

Note: At least one predicate parameter (follow, locations, or track) must be specified.

Available parameters:

- IEnumerable<long> follow (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Firehose() [1/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Firehose ( IDictionary< string, object >  parameters)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Available parameters:

- int count (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Firehose() [2/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Firehose ( int?  count = null,
bool?  stall_warnings = null 
)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Parameters
countThe number of messages to backfill.
stall_warningsSpecifies whether stall warnings should be delivered.
Returns
The stream messages.

◆ Firehose() [3/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Firehose ( object  parameters)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Available parameters:

- int count (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Firehose() [4/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Firehose ( params Expression< Func< string, object >>[]  parameters)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Available parameters:

- int count (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ FirehoseAsObservable() [1/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FirehoseAsObservable ( IDictionary< string, object >  parameters)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Available parameters:

- int count (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ FirehoseAsObservable() [2/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FirehoseAsObservable ( int?  count = null,
bool?  stall_warnings = null 
)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Parameters
countThe number of messages to backfill.
stall_warningsSpecifies whether stall warnings should be delivered.
Returns
The stream messages.

◆ FirehoseAsObservable() [3/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FirehoseAsObservable ( object  parameters)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Available parameters:

- int count (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ FirehoseAsObservable() [4/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.FirehoseAsObservable ( params Expression< Func< string, object >>[]  parameters)
inline

Returns all public statuses. Few applications require this level of access.

Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.

Available parameters:

- int count (optional)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Sample() [1/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Sample ( bool?  stall_warnings = null)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Parameters
stall_warningsSpecifies whether stall warnings should be delivered.
Returns
The stream messages.

◆ Sample() [2/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Sample ( IDictionary< string, object >  parameters)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Sample() [3/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Sample ( object  parameters)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Sample() [4/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Sample ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ SampleAsObservable() [1/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SampleAsObservable ( bool?  stall_warnings = null)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Parameters
stall_warningsSpecifies whether stall warnings should be delivered.
Returns
The stream messages.

◆ SampleAsObservable() [2/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SampleAsObservable ( IDictionary< string, object >  parameters)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ SampleAsObservable() [3/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SampleAsObservable ( object  parameters)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ SampleAsObservable() [4/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SampleAsObservable ( params Expression< Func< string, object >>[]  parameters)
inline

Returns a small random sample of all public statuses.

The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Site() [1/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Site ( IDictionary< string, object >  parameters)
inline

Streams messages for a set of users.

Available parameters:

- IEnumerable<long> follow (required)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Site() [2/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Site ( IEnumerable< long >  follow,
bool?  stall_warnings = null,
string  with = null,
string  replies = null 
)
inline

Streams messages for a set of users.

Parameters
followA comma separated list of user IDs, indicating the users to return statuses for in the stream.
stall_warningsSpecifies whether stall warnings should be delivered.
withSpecifies whether to return information for just the users specified in the follow parameter, or include messages from accounts they follow.
repliesSpecifies whether to return additional &#64;replies.
Returns
The stream messages.

◆ Site() [3/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Site ( object  parameters)
inline

Streams messages for a set of users.

Available parameters:

- IEnumerable<long> follow (required)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ Site() [4/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.Site ( params Expression< Func< string, object >>[]  parameters)
inline

Streams messages for a set of users.

Available parameters:

- IEnumerable<long> follow (required)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ SiteAsObservable() [1/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SiteAsObservable ( IDictionary< string, object >  parameters)
inline

Streams messages for a set of users.

Available parameters:

- IEnumerable<long> follow (required)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ SiteAsObservable() [2/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SiteAsObservable ( IEnumerable< long >  follow,
bool?  stall_warnings = null,
string  with = null,
string  replies = null 
)
inline

Streams messages for a set of users.

Parameters
followA comma separated list of user IDs, indicating the users to return statuses for in the stream.
stall_warningsSpecifies whether stall warnings should be delivered.
withSpecifies whether to return information for just the users specified in the follow parameter, or include messages from accounts they follow.
repliesSpecifies whether to return additional &#64;replies.
Returns
The stream messages.

◆ SiteAsObservable() [3/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SiteAsObservable ( object  parameters)
inline

Streams messages for a set of users.

Available parameters:

- IEnumerable<long> follow (required)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ SiteAsObservable() [4/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.SiteAsObservable ( params Expression< Func< string, object >>[]  parameters)
inline

Streams messages for a set of users.

Available parameters:

- IEnumerable<long> follow (required)

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ StartStream()

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.StartStream ( StreamingType  type,
StreamingParameters  parameters = null 
)
inline

Starts the Twitter stream.

Parameters
typeType of streaming.
parametersThe parameters of streaming.
Returns
The stream messages.

◆ StartStreamAsync()

Task<IEnumerable<StreamingMessage> > CoreTweet.Streaming.StreamingApi.StartStreamAsync ( StreamingType  type,
StreamingParameters  parameters = null,
CancellationToken  cancellationToken = default(CancellationToken) 
)
inline

Starts the Twitter stream asynchronously.

Parameters
typeType of streaming.
parametersThe parameters of streaming.
cancellationTokenThe cancellation token.
Returns
The stream messages.

◆ User() [1/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.User ( bool?  stall_warnings = null,
string  with = null,
string  replies = null,
string  track = null,
IEnumerable< double >  locations = null 
)
inline

Streams messages for a single user.

Parameters
stall_warningsSpecifies whether stall warnings should be delivered.
withSpecifies whether to return information for just the authenticating user, or include messages from accounts the user follows.
repliesSpecifies whether to return additional &#64;replies.
trackIncludes additional Tweets matching the specified keywords. Phrases of keywords are specified by a comma-separated list.
locationsIncludes additional Tweets falling within the specified bounding boxes.
Returns
The stream messages.

◆ User() [2/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.User ( IDictionary< string, object >  parameters)
inline

Streams messages for a single user.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ User() [3/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.User ( object  parameters)
inline

Streams messages for a single user.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ User() [4/4]

IEnumerable<StreamingMessage> CoreTweet.Streaming.StreamingApi.User ( params Expression< Func< string, object >>[]  parameters)
inline

Streams messages for a single user.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ UserAsObservable() [1/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.UserAsObservable ( bool?  stall_warnings = null,
string  with = null,
string  replies = null,
string  track = null,
IEnumerable< double >  locations = null 
)
inline

Streams messages for a single user.

Parameters
stall_warningsSpecifies whether stall warnings should be delivered.
withSpecifies whether to return information for just the authenticating user, or include messages from accounts the user follows.
repliesSpecifies whether to return additional &#64;replies.
trackIncludes additional Tweets matching the specified keywords. Phrases of keywords are specified by a comma-separated list.
locationsIncludes additional Tweets falling within the specified bounding boxes.
Returns
The stream messages.

◆ UserAsObservable() [2/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.UserAsObservable ( IDictionary< string, object >  parameters)
inline

Streams messages for a single user.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ UserAsObservable() [3/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.UserAsObservable ( object  parameters)
inline

Streams messages for a single user.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

◆ UserAsObservable() [4/4]

IObservable<StreamingMessage> CoreTweet.Streaming.StreamingApi.UserAsObservable ( params Expression< Func< string, object >>[]  parameters)
inline

Streams messages for a single user.

Available parameters:

- string delimited (optional, not affects CoreTweet)

- bool stall_warnings (optional)

- string with (optional)

- string replies (optional)

- string track (optional)

- IEnumerable<double> locations (optional)

Parameters
parametersThe parameters.
Returns
The stream messages.

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