OpenMetaverse.TexturePipeline.Assets_OnImageReceiveProgress C# (CSharp) Method

Assets_OnImageReceiveProgress() private method

private Assets_OnImageReceiveProgress ( UUID image, int lastPacket, int recieved, int total ) : void
image UUID
lastPacket int
recieved int
total int
return void
        private void Assets_OnImageReceiveProgress(UUID image, int lastPacket, int recieved, int total)
        {
            if (OnDownloadProgress != null && currentRequests.ContainsKey(image))
                OnDownloadProgress(image, recieved, total);
        }