HttpRequestDataExtensions.ReadAsString(HttpRequestData, Encoding) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads the body payload as a string.
public static string? ReadAsString (this Microsoft.Azure.Functions.Worker.Http.HttpRequestData request, System.Text.Encoding? encoding = default);
static member ReadAsString : Microsoft.Azure.Functions.Worker.Http.HttpRequestData * System.Text.Encoding -> string
<Extension()>
Public Function ReadAsString (request As HttpRequestData, Optional encoding As Encoding = Nothing) As String
Parameters
- request
- HttpRequestData
The request from which to read.
- encoding
- Encoding
The encoding to use when reading the string. Defaults to UTF-8
Returns
A String that represents request body.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET