UnityEngine.Purchasing.TransactionLog.TransactionLog C# (CSharp) Method

TransactionLog() public method

public TransactionLog ( ILogger logger, string persistentDataPath ) : System
logger ILogger
persistentDataPath string
return System
        public TransactionLog(ILogger logger, string persistentDataPath)
        {
            this.logger = logger;
            if (!string.IsNullOrEmpty(persistentDataPath))
            {
                this.persistentDataPath = Path.Combine(Path.Combine(persistentDataPath, "Unity"), "UnityPurchasing");
            }
        }