Falco Engine 3.9.0.1 (beta)
Result.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace FalcoEngine
7{
8 public static partial class SteamAPI
9 {
10 public enum Result
11 {
12 OK = 1,
13 Fail = 2,
14 NoConnection = 3,
15 InvalidPassword = 5,
16 LoggedInElsewhere = 6,
17 InvalidProtocolVer = 7,
18 InvalidParam = 8,
19 FileNotFound = 9,
20 Busy = 10,
21 InvalidState = 11,
22 InvalidName = 12,
23 InvalidEmail = 13,
24 DuplicateName = 14,
25 AccessDenied = 15,
26 Timeout = 16,
27 Banned = 17,
28 AccountNotFound = 18,
29 InvalidSteamID = 19,
30 ServiceUnavailable = 20,
31 NotLoggedOn = 21,
32 Pending = 22,
33 EncryptionFailure = 23,
34 InsufficientPrivilege = 24,
35 LimitExceeded = 25,
36 Revoked = 26,
37 Expired = 27,
38 AlreadyRedeemed = 28,
39 DuplicateRequest = 29,
40 AlreadyOwned = 30,
41 IPNotFound = 31,
42 PersistFailed = 32,
43 LockingFailed = 33,
44 LogonSessionReplaced = 34,
45 ConnectFailed = 35,
46 HandshakeFailed = 36,
47 IOFailure = 37,
48 RemoteDisconnect = 38,
49 ShoppingCartNotFound = 39,
50 Blocked = 40,
51 Ignored = 41,
52 NoMatch = 42,
53 AccountDisabled = 43,
54 ServiceReadOnly = 44,
55 AccountNotFeatured = 45,
56 AdministratorOK = 46,
57 ContentVersion = 47,
58 TryAnotherCM = 48,
59 PasswordRequiredToKickSession = 49,
60 AlreadyLoggedInElsewhere = 50,
61 Suspended = 51,
62 Cancelled = 52,
63 DataCorruption = 53,
64 DiskFull = 54,
65 RemoteCallFailed = 55,
66 PasswordUnset = 56,
67 ExternalAccountUnlinked = 57,
68 PSNTicketInvalid = 58,
69 ExternalAccountAlreadyLinked = 59,
70 RemoteFileConflict = 60,
71 IllegalPassword = 61,
72 SameAsPreviousValue = 62,
73 AccountLogonDenied = 63,
74 CannotUseOldPassword = 64,
75 InvalidLoginAuthCode = 65,
76 AccountLogonDeniedNoMail = 66,
77 HardwareNotCapableOfIPT = 67,
78 IPTInitError = 68,
79 ParentalControlRestricted = 69,
80 FacebookQueryError = 70,
81 ExpiredLoginAuthCode = 71,
82 IPLoginRestrictionFailed = 72,
83 AccountLockedDown = 73,
84 AccountLogonDeniedVerifiedEmailRequired = 74,
85 NoMatchingURL = 75,
86 BadResponse = 76,
87 RequirePasswordReEntry = 77,
88 ValueOutOfRange = 78,
89 UnexpectedError = 79,
90 Disabled = 80,
91 InvalidCEGSubmission = 81,
92 RestrictedDevice = 82,
93 RegionLocked = 83,
94 RateLimitExceeded = 84,
95 AccountLoginDeniedNeedTwoFactor = 85,
96 ItemDeleted = 86,
97 AccountLoginDeniedThrottle = 87,
98 TwoFactorCodeMismatch = 88,
99 TwoFactorActivationCodeMismatch = 89,
100 AccountAssociatedToMultiplePartners = 90,
101 NotModified = 91,
102 NoMobileDevice = 92,
103 TimeNotSynced = 93,
104 SmsCodeFailed = 94,
105 AccountLimitExceeded = 95,
106 AccountActivityLimitExceeded = 96,
107 PhoneActivityLimitExceeded = 97,
108 RefundToWallet = 98,
109 EmailSendFailure = 99,
110 NotSettled = 100,
111 NeedCaptcha = 101,
112 GSLTDenied = 102,
113 GSOwnerDenied = 103,
114 InvalidItemType = 104,
115 IPBanned = 105,
116 GSLTExpired = 106,
117 InsufficientFunds = 107,
118 TooManyPending = 108,
119 }
120 }
121}