Class
CardContext

Represents a base class for basic and image card contexts.

Definition

Namespace:Telerik.Maui.Controls.Chat

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class CardContext : NotifyPropertyChangedBase, INotifyPropertyChanged

Inheritance: objectNotifyPropertyChangedBaseCardContext

Derived Classes: BasicCardContext

Implements: INotifyPropertyChanged

Inherited Members NotifyPropertyChangedBase.OnPropertyChanged(string)NotifyPropertyChangedBase.UpdateValue<T>(ref T, T, string)NotifyPropertyChangedBase.UpdateValue<T>(ref T, T, Action<T>, string)NotifyPropertyChangedBase.PropertyChanged

Constructors

CardContext()

Initializes a new instance of the CardContext class.

Declaration

cs-api-definition
public CardContext()

Properties

Actions

Gets or sets a collection of card actions.

Declaration

cs-api-definition
public ICollection<CardActionContext> Actions { get; set; }

Property Value

ICollection<CardActionContext>

Data

Gets or sets some custom information about the particular card context. The RadChat does not use this property anywhere, use this to carry a payload of information for your convenience.

Declaration

cs-api-definition
public object Data { get; set; }

Property Value

object