EventData.ResponseMessage Field

Definition

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 

Field Value

Applies to