'Declaration Public Function Find( _ ByVal searchAfterEntry As Entry, _ ByVal searchFor As String _ ) As Entry
public Entry Find( Entry searchAfterEntry, string searchFor )
Parameters
- searchAfterEntry
Pass null to search from the first entry or a reference to an Entry (request) object after which the search should start.
This parameter must be null when searching by ID.
- searchFor
Pass a numeric value as a string, e.g. "42", to search for an Entry (request) object by ID. You can view the ID in HttpWatch by adding an ID column or opening the Overview tab for a specific request. When searching by ID a null value must be passed to the searchAfterEntry parameter.
Passing a URL e.g. "https://www.httpwatch.com" in this parameter will search for an Entry (request) object with a matching URL.