コード例 #1
0
		public virtual IAsyncResult BeginListSavedSearches(ListSavedSearchesOptions options)
		{
			
			return BeginWithHammock<IEnumerable<TwitterSavedSearch>>(WebMethod.Get, "saved_searches/list", FormatAsString);
		}
コード例 #2
0
		public virtual void ListSavedSearches(ListSavedSearchesOptions options, Action<IEnumerable<TwitterSavedSearch>, TwitterResponse> action)
		{
			
			WithHammock(action, "saved_searches/list", FormatAsString);
		}
コード例 #3
0
		public virtual IEnumerable<TwitterSavedSearch> ListSavedSearches(ListSavedSearchesOptions options)
		{
						
			return WithHammock<IEnumerable<TwitterSavedSearch>>("saved_searches/list", FormatAsString);
		}