AppUpdater.Recipe.UpdateRecipeFile.UpdateRecipeFile C# (CSharp) Method

UpdateRecipeFile() public method

public UpdateRecipeFile ( string name, string checksum, long size, FileUpdateAction action, string fileToDownload )
name string
checksum string
size long
action FileUpdateAction
fileToDownload string
        public UpdateRecipeFile(string name, string checksum, long size, FileUpdateAction action, string fileToDownload)
        {
            this.Name = name;
            this.Checksum = checksum;
            this.Size = size;
            this.Action = action;
            this.FileToDownload = fileToDownload;
        }
UpdateRecipeFile