HttpRequestMessage<T> Interface
Type Parameters
- T
The type of the body content that is expected to be received as part of this HTTP request.
public interface HttpRequestMessage
An HttpRequestMessage instance is provided to Azure functions that use HttpTrigger. For an example of how to use the http functionality of Azure Functions, refer to the example in the HttpTrigger
Modifier and Type | Method and Description |
---|---|
abstract Builder |
create Returns a HttpResponseMessage.Builder instance to build a Http |
abstract Builder |
create Returns a HttpResponseMessage.Builder instance to build a Http |
abstract T |
get Returns any body content that was included with this HTTP request. |
abstract java.util.Map<java.lang.String,java.lang.String> |
get Returns a map of headers that were contained within this HTTP request. |
abstract
Http |
get Returns the HTTP method name as Enum |
abstract java.util.Map<java.lang.String,java.lang.String> |
get Returns a map of query parameters that were included with this HTTP request. |
abstract java.net.URI |
get Returns the URI that was called that resulted in this HTTP request being submitted. |
createResponseBuilder
public abstract HttpResponseMessage.Builder createResponseBuilder(HttpStatus status)
Returns a HttpResponseMessage.Builder instance to build a HttpResponseMessage with standard HTTP status code and no response body.
Parameters:
Returns:
createResponseBuilder
public abstract HttpResponseMessage.Builder createResponseBuilder(HttpStatusType status)
Returns a HttpResponseMessage.Builder instance to build a HttpResponseMessage with custome HTTP status code and no response body.
Parameters:
Returns:
getBody
public abstract T getBody()
Returns any body content that was included with this HTTP request.
Returns:
getHeaders
public abstract Map
Returns a map of headers that were contained within this HTTP request.
Returns:
getHttpMethod
public abstract HttpMethod getHttpMethod()
Returns the HTTP method name as Enum
Returns:
getQueryParameters
public abstract Map
Returns a map of query parameters that were included with this HTTP request.
Returns:
getUri
public abstract URI getUri()
Returns the URI that was called that resulted in this HTTP request being submitted.
Returns:
Azure SDK for Java feedback
Azure SDK for Java is an open source project. Select a link to provide feedback: