UnityEditor.AssetStoreWindow.OnDownloadProgress C# (CSharp) Method

OnDownloadProgress() public method

public OnDownloadProgress ( string id, string message, ulong bytes, ulong total ) : void
id string
message string
bytes ulong
total ulong
return void
        public void OnDownloadProgress(string id, string message, ulong bytes, ulong total)
        {
            object[] args = new object[] { id, message, bytes, total };
            this.InvokeJSMethod("document.AssetStore.pkgs", "OnDownloadProgress", args);
        }