Interface TextMessageToBeSentAction
public interface TextMessageToBeSentAction
Extensions can implement this interface when returning a text message from
 
ProxyMessageHandler.handleTextMessageToBeSent(InterceptedTextMessage).- 
Method SummaryModifier and TypeMethodDescriptionaction()static TextMessageToBeSentActioncontinueWith(TextMessage message) Build a text WebSocket message to continue through Burp.static TextMessageToBeSentActioncontinueWith(String payload) Build a text WebSocket message to continue through Burp.static TextMessageToBeSentActiondrop()Build a text WebSocket message to be dropped.payload()
- 
Method Details- 
actionMessageToBeSentAction action()- Returns:
- The action associated with this message.
 
- 
payloadString payload()- Returns:
- The payload of this message.
 
- 
continueWithBuild a text WebSocket message to continue through Burp.- Parameters:
- payload- The text message payload.
- Returns:
- The message.
 
- 
continueWithBuild a text WebSocket message to continue through Burp.- Parameters:
- message- The text message.
- Returns:
- The message.
 
- 
dropBuild a text WebSocket message to be dropped.- Returns:
- The message to be dropped.
 
 
-