Table of Contents

Class FileModuleBuilder

Namespace
Kook
Assembly
Kook.Net.Core.dll

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

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

Constructors

FileModuleBuilder()

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

public FileModuleBuilder()

FileModuleBuilder(string, string?)

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

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

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

public FileModule Build()

Returns

FileModule

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

Exceptions

ArgumentNullException

Sourcenull

ArgumentException

Source 为空字符串。

UriFormatException

Source 不是有效的 URL。

Equals(FileModuleBuilder?)

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

public bool Equals(FileModuleBuilder? fileModuleBuilder)

Parameters

fileModuleBuilder FileModuleBuilder

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 FileModuleBuilder WithSource(string? source)

Parameters

source string

文件的 URL。

Returns

FileModuleBuilder

当前构建器。

WithTitle(string)

设置文件名。

public FileModuleBuilder WithTitle(string title)

Parameters

title string

文件名。

Returns

FileModuleBuilder

当前构建器。

Operators

operator ==(FileModuleBuilder?, FileModuleBuilder?)

判定两个 FileModuleBuilder 是否相等。

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

Parameters

left FileModuleBuilder
right FileModuleBuilder

Returns

bool

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

operator !=(FileModuleBuilder?, FileModuleBuilder?)

判定两个 FileModuleBuilder 是否不相等。

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

Parameters

left FileModuleBuilder
right FileModuleBuilder

Returns

bool

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