Table of Contents

Class FileModule

Namespace
Kook
Assembly
Kook.Net.Core.dll

文件模块,可用于 ICard 中。

public class FileModule : IMediaModule, IModule, IEquatable<FileModule>, IEquatable<IModule>
Inheritance
FileModule
Implements
Inherited Members
Extension Methods

Properties

Size

获取文件的大小(单位:字节)。

public int? Size { get; }

Property Value

int?

Source

获取文件的 URL。

public string Source { get; }

Property Value

string

Title

获取文件的标题。

public string? Title { get; }

Property Value

string

Type

获取模块的类型。

public ModuleType Type { get; }

Property Value

ModuleType

Methods

Equals(FileModule?)

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

public bool Equals(FileModule? fileModule)

Parameters

fileModule FileModule

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.

Operators

operator ==(FileModule, FileModule)

判定两个 FileModule 是否相等。

public static bool operator ==(FileModule left, FileModule right)

Parameters

left FileModule
right FileModule

Returns

bool

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

operator !=(FileModule, FileModule)

判定两个 FileModule 是否不相等。

public static bool operator !=(FileModule left, FileModule right)

Parameters

left FileModule
right FileModule

Returns

bool

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