Delegate VerifyFunc
A delegate that verifies whether an observed response is valid given a request and state. Returns (isValid, stateProfile) where stateProfile contains the updated state(s) if valid.
public delegate (bool IsValid, StateProfile StateProfile) VerifyFunc(object request, IState state, object observedResponse)
Parameters
requestobject- A delegate that verifies whether an observed response is valid given a request and state. Returns (isValid, stateProfile) where stateProfile contains the updated state(s) if valid.
stateIState- A delegate that verifies whether an observed response is valid given a request and state. Returns (isValid, stateProfile) where stateProfile contains the updated state(s) if valid.
observedResponseobject- A delegate that verifies whether an observed response is valid given a request and state. Returns (isValid, stateProfile) where stateProfile contains the updated state(s) if valid.
Returns
- (bool, StateProfile)
- A delegate that verifies whether an observed response is valid given a request and state. Returns (isValid, stateProfile) where stateProfile contains the updated state(s) if valid.