Class Author
Represent a chat participant - an author of messages.
Inheritance
System.Object
Author
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class Author : BindableObject
Constructors
Author()
Declaration
public Author()
Fields
AvatarProperty
Identifies the Avatar property.
Declaration
public static readonly BindableProperty AvatarProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
DataProperty
Identifies the Data property.
Declaration
public static readonly BindableProperty DataProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
NameProperty
Identifies the Name property.
Declaration
public static readonly BindableProperty NameProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
Avatar
Gets or sets the Author's avatar.
Declaration
public ImageSource Avatar { get; set; }
Property Value
Microsoft.Maui.Controls.ImageSource
|
Data
Gets or sets custom data that can be used to distinguish between different authors.
Declaration
public object Data { get; set; }
Property Value
System.Object
|
Name
Gets or sets the Author's name.
Declaration
public string Name { get; set; }
Property Value
System.String
|