You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
457 B
18 lines
457 B
4 years ago
|
namespace Discord
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Specifies the cache mode that should be used.
|
||
|
/// </summary>
|
||
|
public enum CacheMode
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Allows the object to be downloaded if it does not exist in the current cache.
|
||
|
/// </summary>
|
||
|
AllowDownload,
|
||
|
/// <summary>
|
||
|
/// Only allows the object to be pulled from the existing cache.
|
||
|
/// </summary>
|
||
|
CacheOnly
|
||
|
}
|
||
|
}
|