Class NoRetriesPolicy
A retry policy that does not allow any retries.
Implements
Inherited Members
Namespace: UnityEngine.Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public class NoRetriesPolicy : IRetryPolicy
Methods
ShouldRetry(IRetryPolicyInformation)
Determines whether the retry policy should allow another attempt.
Declaration
public virtual Task<bool> ShouldRetry(IRetryPolicyInformation info)
Parameters
Type | Name | Description |
---|---|---|
IRetryPolicyInformation | info | The information about the retry attempt. |
Returns
Type | Description |
---|---|
Task<bool> | Always returns false. |