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
Properties
Source
获取或设置视频的 URL。
public string? Source { get; set; }
Property Value
Title
获取或设置视频标题。
public string? Title { get; set; }
Property Value
Type
获取此构建器构建的模块的类型。
public ModuleType Type { get; }
Property Value
Methods
Build()
构建当前构建器为一个 VideoModule 对象。
public VideoModule Build()
Returns
- VideoModule
由当前构建器表示的属性构建的 VideoModule 对象。
Exceptions
- ArgumentNullException
Source 为
null
。- 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
Equals(object?)
Determines whether the specified object is equal to the current object.
public override bool Equals(object? obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
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
VideoModuleBuilderright
VideoModuleBuilder
Returns
- bool
如果两个 VideoModuleBuilder 相等,则为
true
;否则为false
。
operator !=(VideoModuleBuilder?, VideoModuleBuilder?)
判定两个 VideoModuleBuilder 是否不相等。
public static bool operator !=(VideoModuleBuilder? left, VideoModuleBuilder? right)
Parameters
left
VideoModuleBuilderright
VideoModuleBuilder
Returns
- bool
如果两个 VideoModuleBuilder 不相等,则为
true
;否则为false
。