Recurity.Swf.SwfWriteProgressChangedEventArgs.SwfWriteProgressChangedEventArgs C# (CSharp) 메소드

SwfWriteProgressChangedEventArgs() 공개 메소드

Provides data for the WriteProgressChanged events.
public SwfWriteProgressChangedEventArgs ( TagTypes type, System.Int64 size, System.Int64 position ) : System
type TagTypes The type of the tag that has been written
size System.Int64 The size of the stream.
position System.Int64 The stream position.
리턴 System
        public SwfWriteProgressChangedEventArgs(TagTypes type,  Int64 size, Int64 position)
        {
            this._FileSize = size;
            this._WritePosition = position;
            this._Type = type;
        }
SwfWriteProgressChangedEventArgs