VAGSuite.msiupdater.MSIUpdaterEventArgs.MSIUpdaterEventArgs C# (CSharp) Method

MSIUpdaterEventArgs() public method

public MSIUpdaterEventArgs ( string Data, bool Update, bool mVersion2High, System.Version NewVersion, bool info, string xmlfile ) : System
Data string
Update bool
mVersion2High bool
NewVersion System.Version
info bool
xmlfile string
return System
            public MSIUpdaterEventArgs(string Data, bool Update, bool mVersion2High, Version NewVersion, bool info, string xmlfile)
            {
                this._Data = Data;
                this._info = info;
                this._UpdateAvailable = Update;
                this._Version2High = mVersion2High;
                this._Version = NewVersion;
                this._xmlFile = xmlfile;
            }
msiupdater.MSIUpdaterEventArgs