AdvancedLauncher.Management.Commands.LicenseCommand.DoCommand C# (CSharp) Method

DoCommand() public method

public DoCommand ( string args ) : bool
args string
return bool
        public override bool DoCommand(string[] args)
        {
            using (var reader = new StreamReader(Assembly.GetExecutingAssembly()
                .GetManifestResourceStream("AdvancedLauncher.Docs.LICENSE.txt"))) {
                while (!reader.EndOfStream) {
                    LOGGER.Info(reader.ReadLine());
                }
            }
            return true;
        }