public virtual void GetSavedSearch(GetSavedSearchOptions options, Action<TwitterSavedSearch, TwitterResponse> action)
		{
			var id = options.Id;
			
			WithHammock(action, "saved_searches/show/{id}", FormatAsString, "?id=", id);
		}
		public virtual IAsyncResult BeginGetSavedSearch(GetSavedSearchOptions options)
		{
			var id = options.Id;
				

			return BeginWithHammock<TwitterSavedSearch>(WebMethod.Get, "saved_searches/show/{id}", FormatAsString, "?id=", id);
		}
		public virtual TwitterSavedSearch GetSavedSearch(GetSavedSearchOptions options)
		{
			var id = options.Id;
				
			
			return WithHammock<TwitterSavedSearch>("saved_searches/show/{id}", FormatAsString, "?id=", id);
		}
		public virtual Task<TwitterResponse<TwitterSavedSearch>> GetSavedSearchAsync(GetSavedSearchOptions options)
		{
			var id = options.Id;
				
			
			return ExecuteRequest<TwitterSavedSearch>("saved_searches/show/{id}", FormatAsString, "?id=", id);
		}
		public virtual Task<TwitterAsyncResult<TwitterSavedSearch>> GetSavedSearchAsync(GetSavedSearchOptions options)
		{
			var id = options.Id;
			
			return WithHammockTask<TwitterSavedSearch>(_client, "saved_searches/show/{id}", FormatAsString, "?id=", id);
		}
		public virtual IAsyncResult GetSavedSearch(GetSavedSearchOptions options, Action<TwitterSavedSearch, TwitterResponse> action)
		{
			var id = options.Id;
				

			return WithHammock(_client, action, "saved_searches/show/{id}", FormatAsString, "?id=", id);
		}