Streamer.TwitterQuery.GetKey C# (CSharp) Method

GetKey() public abstract method

public abstract GetKey ( ) : string
return string
        public abstract string GetKey();

Usage Example

Beispiel #1
0
 // Add and remove parameters (to add more)
 public void AddQueryParameter(TwitterQuery query)
 {
     if (queries.ContainsKey(query.GetKey()))
     {
         queries[query.GetKey()].MergeQuery(query);
     }
     else
     {
         queries.Add(query.GetKey(), query);
     }
 }
All Usage Examples Of Streamer.TwitterQuery::GetKey