EngineModelShownConversationsSerialized Property
|
Lists the Conversations that have already been displayed to the user.
Namespace:
Livit.Learn.ModelAssembly:
Livit.Learn.Model (in Livit.Learn.Model.dll) Version: 0.0.0.0
Syntaxpublic List<string> ShownConversationsSerialized { get; set; }
Property Value
Type:
ListString
Examples
This code will automatically complete a task when a specific conversation has been shown:
<Task>
<CompletedWhen>
<DataCondition Target="{Binding ConversationManager.ShownConversations, ElementId=Engine}" Comparison="Contains" Value="Conversation_Automatic" />
</CompletedWhen>
</Task>
See Also