QuickFix.SessionSettings.SessionSettings C# (CSharp) Method

SessionSettings() public method

public SessionSettings ( string file ) : System.Collections.Generic
file string
return System.Collections.Generic
        public SessionSettings(string file)
        {
            try
            {
                FileStream fs = File.Open(file, FileMode.Open, FileAccess.Read);
                Load(new StreamReader(fs));
            }
            catch(System.Exception e)
            {
                throw new ConfigError("File " + file + " not found (" + e.Message + ")");
            }
        }

Same methods

SessionSettings::SessionSettings ( ) : System.Collections.Generic
SessionSettings::SessionSettings ( TextReader conf ) : System.Collections.Generic