Dev2.PathOperations.Dev2ActivityIOPath.Dev2ActivityIOPath C# (CSharp) Method

Dev2ActivityIOPath() private method

private Dev2ActivityIOPath ( enActivityIOPathType type, string path, string user, string pass, bool isNotCertVerifiable, string privateKeyFile ) : System
type enActivityIOPathType
path string
user string
pass string
isNotCertVerifiable bool
privateKeyFile string
return System
        internal Dev2ActivityIOPath(enActivityIOPathType type, string path, string user, string pass, bool isNotCertVerifiable,string privateKeyFile)
        {
            PathType = type;
            Path = path;
            Username = user;
            Password = pass;
            IsNotCertVerifiable = isNotCertVerifiable;
            PrivateKeyFile = privateKeyFile;
        }
Dev2ActivityIOPath