Table of Contents

Class KMarkdownElementBuilder

Namespace
Kook
Assembly
Kook.Net.Core.dll

用来构建 KMarkdownElement 元素的构建器。

public class KMarkdownElementBuilder : IElementBuilder, IEquatable<KMarkdownElementBuilder>, IEquatable<IElementBuilder>
Inheritance
KMarkdownElementBuilder
Implements
Inherited Members

Constructors

KMarkdownElementBuilder()

初始化一个 KMarkdownElementBuilder 类的新实例。

public KMarkdownElementBuilder()

KMarkdownElementBuilder(string?)

初始化一个 KMarkdownElementBuilder 类的新实例。

public KMarkdownElementBuilder(string? content)

Parameters

content string

KMarkdown 文本内容。

Fields

MaxKMarkdownLength

KMarkdown 文本的最大长度。

public const int MaxKMarkdownLength = 5000

Field Value

int

Properties

Content

获取或设置 KMarkdown 的文本内容。

public string? Content { get; set; }

Property Value

string

Type

获取此构建器构建的元素的类型。

public ElementType Type { get; }

Property Value

ElementType

Methods

Build()

构建当前构建器为一个 KMarkdownElement

public KMarkdownElement Build()

Returns

KMarkdownElement

由当前构建器表示的属性构建的 KMarkdownElement 对象。

Exceptions

ArgumentNullException

Contentnull

ArgumentException

Content 的长度超过了 MaxKMarkdownLength

Equals(KMarkdownElementBuilder?)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(KMarkdownElementBuilder? kMarkdownElementBuilder)

Parameters

kMarkdownElementBuilder KMarkdownElementBuilder

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object?)

Determines whether the specified object is equal to the current object.

public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

WithContent(string)

设置 KMarkdown 的文本内容,值将被设置到 Content 属性上。

public KMarkdownElementBuilder WithContent(string content)

Parameters

content string

KMarkdown 的文本内容。

Returns

KMarkdownElementBuilder

当前构建器。

Operators

operator ==(KMarkdownElementBuilder?, KMarkdownElementBuilder?)

判定两个 KMarkdownElementBuilder 是否相等。

public static bool operator ==(KMarkdownElementBuilder? left, KMarkdownElementBuilder? right)

Parameters

left KMarkdownElementBuilder
right KMarkdownElementBuilder

Returns

bool

如果两个 KMarkdownElementBuilder 相等,则为 true;否则为 false

implicit operator KMarkdownElementBuilder(string)

使用指定的 KMarkdown 文本内容初始化一个新的 KMarkdownElementBuilder 类的实例。

public static implicit operator KMarkdownElementBuilder(string content)

Parameters

content string

KMarkdown 文本内容。

Returns

KMarkdownElementBuilder

一个使用指定的 KMarkdown 文本内容初始化的 KMarkdownElementBuilder 类的实例。

operator !=(KMarkdownElementBuilder?, KMarkdownElementBuilder?)

判定两个 KMarkdownElementBuilder 是否不相等。

public static bool operator !=(KMarkdownElementBuilder? left, KMarkdownElementBuilder? right)

Parameters

left KMarkdownElementBuilder
right KMarkdownElementBuilder

Returns

bool

如果两个 KMarkdownElementBuilder 不相等,则为 true;否则为 false