GetKeys() public method

public GetKeys ( ) : string>.Dictionary
return string>.Dictionary
Ejemplo n.º 1
0
        protected override void BeginProcessing()
        {
            // Collect host/fingerprint information from the registry.
            base.BeginProcessing();
            var keymng = new TrustedKeyMng();

            _sshHostKeys = keymng.GetKeys();
        }
Ejemplo n.º 2
0
 protected override void BeginProcessing()
 {
     // Collect host/fingerprint information from the registry if connection is not forced.
     if (!_force)
     {
         base.BeginProcessing();
         var keymng = new TrustedKeyMng();
         _sshHostKeys = keymng.GetKeys();
     }
 }
Ejemplo n.º 3
0
 protected override void BeginProcessing()
 {
     // no need to validate keys if the force parameter is selected.
     if (!_force)
     {
         // Collect host/fingerprint information from the registry.
         base.BeginProcessing();
         var keymng = new TrustedKeyMng();
         _sshHostKeys = keymng.GetKeys();
     }
 }
 protected override void BeginProcessing()
 {
     // Collect host/fingerprint information from the registry.
     base.BeginProcessing();
     var keymng = new TrustedKeyMng();
     _sshHostKeys = keymng.GetKeys();
 }