Class
Author

Represent a chat participant - an author of messages.

Definition

Namespace:Telerik.Maui.Controls.Chat

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class Author : BindableObject

Inheritance: objectAuthor

Constructors

Author()

Declaration

cs-api-definition
public Author()

Fields

AvatarProperty

Identifies the Avatar property.

Declaration

cs-api-definition
public static readonly BindableProperty AvatarProperty

Field Value

BindableProperty

DataProperty

Identifies the Data property.

Declaration

cs-api-definition
public static readonly BindableProperty DataProperty

Field Value

BindableProperty

NameProperty

Identifies the Name property.

Declaration

cs-api-definition
public static readonly BindableProperty NameProperty

Field Value

BindableProperty

Properties

Avatar

Gets or sets the Author's avatar.

Declaration

cs-api-definition
public ImageSource Avatar { get; set; }

Property Value

ImageSource

Data

Gets or sets custom data that can be used to distinguish between different authors.

Declaration

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

Property Value

object

Name

Gets or sets the Author's name.

Declaration

cs-api-definition
public string Name { get; set; }

Property Value

string