Class SeHyphenPayload
A wrapped '–'.
Assembly: Dalamud.dll
View Source
Declaration
public class SeHyphenPayload : Payload, ITextProvider
Inheritance: System.Object
-> Dalamud.Game.Text.SeStringHandling.Payload
Implements:
Dalamud.Game.Text.SeStringHandling.ITextProvider
Properties
Payload
Gets an instance of SeHyphenPayload.
View Source
Declaration
public static SeHyphenPayload Payload { get; }
Text
Gets the text, just a '–'.
View Source
Declaration
public string Text { get; }
Type
Gets the type of this payload.
View Source
Declaration
public override PayloadType Type { get; }
Methods
EncodeImpl()
Encodes the internal state of this payload into a byte[] suitable for sending to in-game handlers such as the chat log.
View Source
Declaration
protected override byte[] EncodeImpl()
Returns
System.Byte[]
: Encoded binary payload data suitable for use with in-game handlers.### DecodeImpl(BinaryReader, long)
Decodes a byte stream from the game into a payload object.
View Source
Declaration
protected override void DecodeImpl(BinaryReader reader, long endOfStream)
Parameters
Type | Name | Description |
---|---|---|
System.IO.BinaryReader | reader | A BinaryReader containing at least all the data for this payload. |
System.Int64 | endOfStream | The location holding the end of the data for this payload. |