Bari.Core.Tools.DownloadableExternalTool.DownloadableExternalTool C# (CSharp) Метод

DownloadableExternalTool() публичный Метод

Defines a tool which can be downloaded if missing from an URL
public DownloadableExternalTool ( string name, string defaultInstallLocation, string executableName, Uri url, bool isDotNETProcess, IParameters parameters ) : System
name string Unique name of this tool
defaultInstallLocation string Default installation location where the tool can be found
executableName string File name of the executable to be ran
url System.Uri The URL where the tool can be downloaded from
isDotNETProcess bool If true the process will be executed with mono when not running on MS CLR
parameters IParameters Application parameters
Результат System
        public DownloadableExternalTool(string name, string defaultInstallLocation, string executableName, Uri url, bool isDotNETProcess, IParameters parameters)
            : base(name, parameters)
        {
            this.defaultInstallLocation = defaultInstallLocation;
            this.executableName = executableName;
            this.url = url;
            isDotNetProcess = isDotNETProcess;

            bariInstallLocation =
                Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
                             "bari", "tools", name);
        }