ContinueConversationAttribute Class

Definition

Specifies that a method should participate in continuing an existing conversation flow using optional route segment. This is used by a Host to map incoming Proactive requests to the method.

[System.AttributeUsage(System.AttributeTargets.Method, Inherited=true)]
public class ContinueConversationAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Method, Inherited=true)>]
type ContinueConversationAttribute = class
    inherit Attribute
Public Class ContinueConversationAttribute
Inherits Attribute
Inheritance
ContinueConversationAttribute
Attributes

Remarks

Apply this attribute to methods that are intended to handle continuation of conversations, such as in conversational bots or workflow systems. The attribute identifies the delegate responsible for handling the continuation and optionally specifies a route segment to distinguish between different conversation paths. This attribute can be inherited by derived classes.

Constructors

Name Description
ContinueConversationAttribute(String, String)

Initializes a new instance of the ContinueConversationAttribute class with the specified conversation key and optional token handler configuration.

Fields

Name Description
DefaultKey

Properties

Name Description
Key

Gets the unique identifier associated with the current instance.

TokenHandlers

Gets or sets the token handler configuration used for processing authentication tokens.

Applies to