Gamebase SDK for Unity 2.69.0
Toast Gamebase Platform
Loading...
Searching...
No Matches

◆ WithdrawImmediately()

static void WithdrawImmediately ( GamebaseCallback::ErrorDelegate callback)
static

This function ignores the withdrawal grace period and proceeds withdrawal immediately.

Since
Added 2.9.0.
Parameters
callbackCallbacks the result of WithdrawImmediately.

Example Usage :

public void SampleWithdrawImmediately()
{
{
if (Gamebase.IsSuccess(error) == true)
{
Debug.Log("WithdrawImmediately succeeded.");
}
else
{
Debug.Log(string.Format("SampleWithdrawImmediately failed. error:{0}", error));
}
});
}
static void WithdrawImmediately(GamebaseCallback.ErrorDelegate callback)
This function ignores the withdrawal grace period and proceeds withdrawal immediately.
Definition Gamebase.cs:3676
This class provides wrapping of function execution related to temporary withdrawal.
Definition Gamebase.cs:3651
static bool IsSuccess(GamebaseError error)
Return true if the GamebaseException object is null or the error code is zero.
Definition Gamebase.cs:57
The Gamebase class is core of Gamebase service.
Definition Gamebase.cs:11