GitSharp.Core.Transport.OpenSshConfig.OpenSshConfig C# (CSharp) Метод

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

public OpenSshConfig ( DirectoryInfo home, FileInfo cfg ) : System
home System.IO.DirectoryInfo
cfg System.IO.FileInfo
Результат System
        public OpenSshConfig(DirectoryInfo home, FileInfo cfg)
        {
            this.home = home;
            configFile = cfg;
            hosts = new Dictionary<string, Host>();
        }