Table of Contents

Delegate VerifyFunc

Namespace
Microsoft.Accordant
Assembly
Accordant.dll

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

request object
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.
state IState
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.
observedResponse object
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.