ValidateReply Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a method the TestFlow can call to validate an activity.
public delegate void ValidateReply(IActivity expected, IActivity actual);
type ValidateReply = delegate of IActivity * IActivity -> unit
Public Delegate Sub ValidateReply(expected As IActivity, actual As IActivity)
Parameters
- expected
- IActivity
The expected activity from the bot or adapter.
- actual
- IActivity
The actual activity from the bot or adapter.