BLL.Workflows.IsoGen.IsoGen C# (CSharp) Метод

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

public IsoGen ( string buildType, string kernel, string bootImage, string arguments ) : System
buildType string
kernel string
bootImage string
arguments string
Результат System
        public IsoGen(string buildType, string kernel, string bootImage, string arguments)
        {
            _buildType = buildType;
            _kernel = kernel;
            _bootImage = bootImage;
            _arguments = arguments;
            if (Settings.DebugRequiresLogin == "No" || Settings.OnDemandRequiresLogin == "No" ||
              Settings.RegisterRequiresLogin == "No")
                _userToken = Settings.UniversalToken;
            else
            {
                _userToken = "";
            }
            _buildPath = HttpContext.Current.Server.MapPath("~") + Path.DirectorySeparatorChar + "private" +
                            Path.DirectorySeparatorChar + "client_iso" + Path.DirectorySeparatorChar + "output" +
                            Path.DirectorySeparatorChar;
        }