You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

EntityState.cs 622 B

123456789101112131415161718
  1. namespace Discord
  2. {
  3. public enum EntityState : byte
  4. {
  5. /// <summary> Object is not attached to a cache manager nor receiving live updates. </summary>
  6. Detached = 0,
  7. /// <summary> Object is attached to a cache manager and receiving live updates. </summary>
  8. Attached,
  9. /// <summary> Object was deleted. </summary>
  10. Deleted,
  11. /// <summary> Object is currently waiting to be created. </summary>
  12. Queued,
  13. /// <summary> Object's creation was aborted. </summary>
  14. Aborted,
  15. /// <summary> Object's creation failed. </summary>
  16. Failed
  17. }
  18. }