ReceiveRequestExtensions.ReadBodyAsJson<T>(ReceiveRequest) 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.
Serializes the body of this ReceiveRequest as JSON.
public static T ReadBodyAsJson<T> (this Microsoft.Bot.Streaming.ReceiveRequest request);
static member ReadBodyAsJson : Microsoft.Bot.Streaming.ReceiveRequest -> 'T
<Extension()>
Public Function ReadBodyAsJson(Of T) (request As ReceiveRequest) As T
Type Parameters
- T
The type to attempt to deserialize the contents of this ReceiveRequest's body into.
Parameters
- request
- ReceiveRequest
The current instance of ReceiveRequest.
Returns
T
On success, an object of type T populated with data serialized from the ReceiveRequest body. Otherwise a default instance of type T.