Class QuestPayload
An SeString Payload representing an interactable quest link.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Dalamud.Game.Text.SeStringHandling.Payloads
Assembly: Dalamud.dll
Syntax
public class QuestPayload : Payload
Constructors
| Improve this Doc View SourceQuestPayload(UInt32)
Initializes a new instance of the QuestPayload class. Creates a payload representing an interactable quest link for the specified quest.
Declaration
public QuestPayload(uint questId)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt32 | questId | The id of the quest. |
Properties
| Improve this Doc View SourceQuest
Gets the underlying Lumina Quest represented by this payload.
Declaration
[JsonIgnore]
public Quest Quest { get; }
Property Value
| Type | Description |
|---|---|
| Lumina.Excel.GeneratedSheets.Quest |
Remarks
The value is evaluated lazily and cached.
Type
Gets the type of this payload.
Declaration
public override PayloadType Type { get; }
Property Value
| Type | Description |
|---|---|
| PayloadType |
Overrides
Methods
| Improve this Doc View SourceDecodeImpl(BinaryReader, Int64)
Decodes a byte stream from the game into a payload object.
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. |
Overrides
| Improve this Doc View SourceEncodeImpl()
Encodes the internal state of this payload into a byte[] suitable for sending to in-game handlers such as the chat log.
Declaration
protected override byte[] EncodeImpl()
Returns
| Type | Description |
|---|---|
| System.Byte[] | Encoded binary payload data suitable for use with in-game handlers. |
Overrides
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| System.String |
Overrides
System.Object.ToString()