Poderosa.Forms.SSHOptionPanel.GetCipherAlgorithmOrder C# (CSharp) Méthode

GetCipherAlgorithmOrder() private méthode

private GetCipherAlgorithmOrder ( ) : string[]
Résultat string[]
        private string[] GetCipherAlgorithmOrder()
        {
            var algorithms = new List<string>();
            foreach (CipherAlgorithmListItem item in _cipherOrderList.Items) {
                algorithms.Add(item.Value.ToString());
            }
            return algorithms.ToArray();
        }