Example #1
0
    public async void GetRemoteVersion(string fileName)
    {
        try {
            var version = await m_Cache.GetRemoteVersion(fileName);

            Debug.Log(fileName + " version: " + version);
        }
        catch (Exception e) {
            Debug.LogError(e);
        }
    }