Click or drag to resize

EngineModelShownConversationsSerialized Property

Lists the Conversations that have already been displayed to the user.

Namespace:  Livit.Learn.Model
Assembly:  Livit.Learn.Model (in Livit.Learn.Model.dll) Version: 0.0.0.0
Syntax
C#
public List<string> ShownConversationsSerialized { get; set; }

Property Value

Type: ListString
Examples
This code will automatically complete a task when a specific conversation has been shown:
XML
<Task>
  <CompletedWhen>
    <DataCondition Target="{Binding ConversationManager.ShownConversations, ElementId=Engine}" Comparison="Contains" Value="Conversation_Automatic" />
  </CompletedWhen>
</Task>
See Also