ArchiSteamFarm.MobileAuthenticator.Confirmation.Confirmation C# (CSharp) Метод

Confirmation() приватный Метод

private Confirmation ( uint id, ulong key, Steam type ) : System
id uint
key ulong
type Steam
Результат System
			internal Confirmation(uint id, ulong key, Steam.ConfirmationDetails.EType type) {
				if ((id == 0) || (key == 0) || (type == Steam.ConfirmationDetails.EType.Unknown)) {
					throw new ArgumentNullException(nameof(id) + " || " + nameof(key) + " || " + nameof(type));
				}

				ID = id;
				Key = key;
				Type = type;
			}
		}
MobileAuthenticator.Confirmation