Table of Contents

Class AudioModuleBuilder

Namespace
Kook
Assembly
Kook.Net.Core.dll

用来构建 AudioModuleBuilder 模块的构建器。

public class AudioModuleBuilder : IModuleBuilder, IEquatable<AudioModuleBuilder>, IEquatable<IModuleBuilder>
Inheritance
AudioModuleBuilder
Implements
Inherited Members

Constructors

AudioModuleBuilder()

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

public AudioModuleBuilder()

AudioModuleBuilder(string, string?, string?)

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

public AudioModuleBuilder(string source, string? cover = null, string? title = null)

Parameters

source string

音频的 URL。

cover string

音频的封面的 URL。

title string

音频的标题。

Properties

Cover

获取或设置音频的封面的 URL。

public string? Cover { get; set; }

Property Value

string

Source

获取或设置音频的 URL。

public string? Source { get; set; }

Property Value

string

Title

获取或设置音频的标题。

public string? Title { get; set; }

Property Value

string

Type

获取此构建器构建的模块的类型。

public ModuleType Type { get; }

Property Value

ModuleType

Methods

Build()

构建当前构建器为一个 AudioModule 对象。

public AudioModule Build()

Returns

AudioModule

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

Exceptions

ArgumentNullException

Sourcenull

ArgumentException

Source 为空字符串。

UriFormatException

Source 不是有效的 URL。

Equals(AudioModuleBuilder?)

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

public bool Equals(AudioModuleBuilder? audioModuleBuilder)

Parameters

audioModuleBuilder AudioModuleBuilder

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.

WithCover(string?)

设置音频的封面的 URL。

public AudioModuleBuilder WithCover(string? cover)

Parameters

cover string

音频的封面的 URL。

Returns

AudioModuleBuilder

当前构建器。

WithSource(string?)

设置音频的 URL。

public AudioModuleBuilder WithSource(string? source)

Parameters

source string

音频的 URL。

Returns

AudioModuleBuilder

当前构建器。

WithTitle(string?)

设置音频的标题。

public AudioModuleBuilder WithTitle(string? title)

Parameters

title string

音频的标题。

Returns

AudioModuleBuilder

当前构建器。

Operators

operator ==(AudioModuleBuilder?, AudioModuleBuilder?)

判定两个 AudioModuleBuilder 是否相等。

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

Parameters

left AudioModuleBuilder
right AudioModuleBuilder

Returns

bool

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

operator !=(AudioModuleBuilder?, AudioModuleBuilder?)

判定两个 AudioModuleBuilder 是否不相等。

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

Parameters

left AudioModuleBuilder
right AudioModuleBuilder

Returns

bool

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