Reputation: 35
I am using the static function OnBeforeRequest(oSession: Session) { therefor I have oSession avaible und now I want to replace the entire string here.
static function OnBeforeRequest(oSession: Session) {
oSession
What property should I use ?
Upvotes: 0
Views: 1996
Reputation: 57075
oSession.utilSetResponseBody("whateveryouwant");
Upvotes: 1