mirai-core / net.mamoe.mirai.message.data / XmlMessage

XmlMessage

@PlannedRemoval("1.0.0") @SinceMirai("0.27.0") class XmlMessage : ServiceMessage
Deprecated: use ServiceMessage with serviceId 1

XML 消息, 如分享, 卡片等.

由于 serviceId 不准确, 请使用 ServiceMessage 并手动指定 serviceId

Parameters

serviceId - 目前未知, 一般为 60

See Also

buildXmlMessage

Types

Key

companion object Key : Key<XmlMessage>

Constructors

<init>

XmlMessage(content: String)

XML 消息, 如分享, 卡片等.

XmlMessage(serviceId: Int = 60, content: String)

Companion Object Properties

typeName

Key 指代的 Message 类型名. 一般为 class.simpleName, 如 "QuoteReply", "PlainText"

val typeName: String

Extension Functions

flatten

扁平化 Message

fun Message.flatten(): Sequence<SingleMessage>

isContentEmpty

判断消息内容是否为空.

fun Message.isContentEmpty(): Boolean

isContentNotEmpty

fun Message.isContentNotEmpty(): Boolean

isNotPlain

fun Message.isNotPlain(): Boolean

isNotPlain2

fun Message.isNotPlain2(): Boolean

isPlain

fun Message.isPlain(): Boolean

isPlain2

fun Message.isPlain2(): Boolean

repeat

fun Message.repeat(count: Int): MessageChain

repeat2

fun Message.repeat2(count: Int): MessageChain

sendTo

suspend fun <C : Contact> Message.sendTo(contact: C): MessageReceipt<C>

times

operator fun Message.times(count: Int): MessageChain

toForwardMessage

转换为 ForwardMessage

fun Message.toForwardMessage(sender: User, time: Int = currentTimeSeconds.toInt(), displayStrategy: DisplayStrategy = DisplayStrategy): ForwardMessage
fun Message.toForwardMessage(senderId: Long, senderName: String, time: Int = currentTimeSeconds.toInt(), displayStrategy: DisplayStrategy = DisplayStrategy): ForwardMessage