public AttendedCommandLineOptions Validate()

in wwauth/Google.Solutions.WWAuth/CommandLineOptions.cs [124:133]


        public AttendedCommandLineOptions Validate()
        {
            if (this.Edit != null && !File.Exists(this.Edit))
            {
                throw new ValidationException(
                    $"File '{this.Edit}' does not exist");
            }

            return this;
        }