-
Notifications
You must be signed in to change notification settings - Fork 0
5. IFlowCare
franciscoserdio edited this page Sep 4, 2016
·
1 revision
This is the interface to implement in pages that accept receiving flow from the previous page.
/// <summary>
/// Interface to implement in pages which are flow care in between user pathways
/// </summary>
/// <see cref="FW.HttpFlow.HttpFlowSystem"/>
/// <see cref="FW.HttpFlow.IContextCare"/>
public interface IFlowCare
{
/// <summary>
/// Sets the flow from previous page.
/// </summary>
/// <param name="theFlow">The flow from previous page.</param>
void SetFlowFromPrevious(HttpFlowItemCollection theFlow);
}