GitSharp.Core.Transport.OpenSshConfig.OpenSshConfig C# (CSharp) Method

OpenSshConfig() public method

public OpenSshConfig ( DirectoryInfo home, FileInfo cfg ) : System
home System.IO.DirectoryInfo
cfg System.IO.FileInfo
return System
        public OpenSshConfig(DirectoryInfo home, FileInfo cfg)
        {
            this.home = home;
            configFile = cfg;
            hosts = new Dictionary<string, Host>();
        }