Recurity.Swf.SwfReadProgressChangedEventArgs.SwfReadProgressChangedEventArgs C# (CSharp) Method

SwfReadProgressChangedEventArgs() public method

Provides data for the ReadProgressChanged events.
public SwfReadProgressChangedEventArgs ( System.Int64 size, System.Int64 position ) : System
size System.Int64 The size of the stream.
position System.Int64 The stream position
return System
        public SwfReadProgressChangedEventArgs(Int64 size, Int64 position)
        {
            this._FileSize = size;
            this._ReadPosition = position;
        }
SwfReadProgressChangedEventArgs