EventData.ResponseMessage Field
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.
If the event triggers after the response is back, this will contain the Response Message (which in HTTP calls would be HttpResponseMessage)
Typically you'd cast this to the expected type to use it:
if(eventData.ResponseMessage is HttpResponseMessage httpResponse){
var flavor = httpResponse.Headers.GetValue("x-request-flavor");
}
public object ResponseMessage;
val mutable ResponseMessage : obj
Public ResponseMessage As Object