Struct GuildFeatures
- Namespace
- Kook
- Assembly
- Kook.Net.Core.dll
表示一个服务器的所有特性。
public readonly struct GuildFeatures
- Inherited Members
Properties
IsKeyAccount
获取此服务器是否为重点客户服务器。
public bool IsKeyAccount { get; }
Property Value
IsOfficial
获取此服务器是否为官方服务器。
public bool IsOfficial { get; }
Property Value
IsPartner
获取此服务器是否为合作伙伴服务器。
public bool IsPartner { get; }
Property Value
RawValues
获取此服务器的所有特性的原始值。
public IReadOnlyCollection<string> RawValues { get; }
Property Value
Remarks
若特性未包含在 GuildFeature 中,则可以在此找到。
Value
获取此服务器的已识别特性。
public GuildFeature Value { get; }
Property Value
Methods
HasFeature(GuildFeature)
获取此服务器是否具有指定的特性。
public bool HasFeature(GuildFeature feature)
Parameters
feature
GuildFeature要进行检查的服务器特性。
Returns
- bool
如果此服务器具有指定的特性,则为
true
,否则为false
。
HasFeature(string)
获取此服务器是否具有指定的特性。
public bool HasFeature(string feature)
Parameters
feature
string要进行检查的服务器特性。
Returns
- bool
如果此服务器具有指定的特性,则为
true
,否则为false
。