Table of Contents

Class VideoModuleBuilder

Namespace
Kook
Assembly
Kook.Net.Core.dll

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

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

Constructors

VideoModuleBuilder()

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

public VideoModuleBuilder()

VideoModuleBuilder(string, string?)

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

public VideoModuleBuilder(string source, string? title = null)

Parameters

source string

视频的 URL。

title string

视频标题。

Properties

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()

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

public VideoModule Build()

Returns

VideoModule

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

Exceptions

ArgumentNullException

Sourcenull

ArgumentException

Source 为空字符串。

UriFormatException

Source 不是有效的 URL。

Equals(VideoModuleBuilder?)

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

public bool Equals(VideoModuleBuilder? videoModuleBuilder)

Parameters

videoModuleBuilder VideoModuleBuilder

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.

WithSource(string?)

设置视频的 URL。

public VideoModuleBuilder WithSource(string? source)

Parameters

source string

视频的 URL。

Returns

VideoModuleBuilder

当前构建器。

WithTitle(string)

设置视频标题。

public VideoModuleBuilder WithTitle(string title)

Parameters

title string

视频标题。

Returns

VideoModuleBuilder

当前构建器。

Operators

operator ==(VideoModuleBuilder?, VideoModuleBuilder?)

判定两个 VideoModuleBuilder 是否相等。

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

Parameters

left VideoModuleBuilder
right VideoModuleBuilder

Returns

bool

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

operator !=(VideoModuleBuilder?, VideoModuleBuilder?)

判定两个 VideoModuleBuilder 是否不相等。

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

Parameters

left VideoModuleBuilder
right VideoModuleBuilder

Returns

bool

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