Class AutoTranslatePayload
An SeString Payload containing an auto-translation/completion chat message.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Dalamud.Game.Chat.SeStringHandling.Payloads
Assembly: Dalamud.dll
Syntax
public class AutoTranslatePayload : Payload, ITextProvider
Constructors
| Improve this Doc View SourceAutoTranslatePayload(UInt32, UInt32)
Creates a new auto-translate payload.
Declaration
public AutoTranslatePayload(uint group, uint key)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt32 | group | The group id for this message. |
| System.UInt32 | key | The key/row id for this message. Which table this is in depends on the group id and details the Completion table. |
Remarks
This table is somewhat complicated in structure, and so using this constructor may not be very nice. There is probably little use to create one of these, however.
Properties
| Improve this Doc View SourceText
The actual text displayed in-game for this payload.
Declaration
public string Text { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Remarks
Value is evaluated lazily and cached.
Type
Declaration
public override PayloadType Type { get; }
Property Value
| Type | Description |
|---|---|
| PayloadType |
Overrides
Methods
| Improve this Doc View SourceDecodeImpl(BinaryReader, Int64)
Declaration
protected override void DecodeImpl(BinaryReader reader, long endOfStream)
Parameters
| Type | Name | Description |
|---|---|---|
| System.IO.BinaryReader | reader | |
| System.Int64 | endOfStream |
Overrides
| Improve this Doc View SourceEncodeImpl()
Declaration
protected override byte[] EncodeImpl()
Returns
| Type | Description |
|---|---|
| System.Byte[] |
Overrides
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| System.String |
Overrides
System.Object.ToString()