Class TranscribedMessage
Inheritance
TranscribedMessage
Assembly: VivoxUnity.dll
Syntax
public class TranscribedMessage : ITranscribedMessage, ITextMessage, IKeyedItemNotifyPropertyChanged<string>, INotifyPropertyChanged
Constructors
TranscribedMessage(AccountId, string, string, string, IChannelSession, bool, DateTime?)
Declaration
public TranscribedMessage(AccountId sender, string message, string key, string language, IChannelSession channelSession, bool fromSelf, DateTime? receivedTime = null)
Parameters
Properties
ChannelSession
The ChannelSesssion that is the target of the message.
Declaration
public IChannelSession ChannelSession { get; }
Property Value
Exception
Declaration
public Exception Exception { get; set; }
Property Value
FromSelf
Indicates whether the message is from the currently signed in user.
Declaration
public bool FromSelf { get; }
Property Value
Key
The unique identifier for the element that raises the property changed event.
Declaration
public string Key { get; set; }
Property Value
Language
The language of the message.
Declaration
public string Language { get; }
Property Value
Message
Declaration
public string Message { get; }
Property Value
ReceivedTime
The time when the message was received.
Declaration
public DateTime ReceivedTime { get; }
Property Value
Sender
Declaration
public AccountId Sender { get; }
Property Value
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Implements