Interface ParsedHttpParameter
-
- All Superinterfaces:
HttpParameter
public interface ParsedHttpParameter extends HttpParameter
This interface is used to hold additional details about an HTTP request parameter that has been parsed by Burp.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RangenameOffsets()This method is used to retrieve the offsets of the parameter name within the HTTP request.RangevalueOffsets()This method is used to retrieve the offsets of the parameter value within the HTTP request.-
Methods inherited from interface burp.api.montoya.http.message.params.HttpParameter
name, type, value
-
-
-
-
Method Detail
-
nameOffsets
Range nameOffsets()
This method is used to retrieve the offsets of the parameter name within the HTTP request.- Returns:
- The parameter name offsets.
-
valueOffsets
Range valueOffsets()
This method is used to retrieve the offsets of the parameter value within the HTTP request.- Returns:
- The parameter value offsets.
-
-