This content is part of a third party extension that is not supported by the Cake project.
                        For more information about this extension see 
Cake.Http.
                            
 
	
		Summary
	
            Sends the HTTP Request using the generic HttpClient Send Method.
            
		
	Syntax
	public static string HttpSend(this ICakeContext context, string address, string httpMethod, Action<HttpSettings> configurator)
	Attributes
	
		
			
				
					
						| Type | Description | 
				
					
						| CakeAliasCategoryAttribute |  | 
					
						| CakeMethodAliasAttribute |  | 
			
		 
	 	
	Parameters
	
		
			
				
					
						| Name | Type | Description | 
				
					
						| context | ICakeContext | The context. | 
					
						| address | string | The URL of the resource. | 
					
						| httpMethod | string | Http Method used to: POST, PUT, GET, DELETE, PATCH, etc. | 
					
						| configurator | Action<HttpSettings> | The settings configurator. | 
			
		 
	 	
	Return Value
	
		
			
				
					
						| Type | Description | 
				
				
					| string | Content of the response body as a string. |