FluxJpeg.Core.Decoder.JpegDecoder.UpdateStreamProgress C# (CSharp) 메소드

UpdateStreamProgress() 개인적인 메소드

private UpdateStreamProgress ( long StreamPosition ) : void
StreamPosition long
리턴 void
        private void UpdateStreamProgress(long StreamPosition)
        {
            if (DecodeProgressChanged != null)
            {
                DecodeProgress.ReadPosition = StreamPosition;
                DecodeProgressChanged(this, DecodeProgress);
            };
        }