소스 검색

Fix compile on .NET 3.5

Gert Driesen 11 년 전
부모
커밋
3384a7d806
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Renci.SshClient/Renci.SshNet/ConnectionInfo.cs

+ 2 - 2
Renci.SshClient/Renci.SshNet/ConnectionInfo.cs

@@ -433,7 +433,7 @@ namespace Renci.SshNet
             }
         }
 
-        private bool TryAuthenticate(Session session, ICollection<string> allowedAuthenticationMethods, IList<AuthenticationMethod> failedAuthenticationMethods, ref SshAuthenticationException authenticationException)
+        private bool TryAuthenticate(Session session, IList<string> allowedAuthenticationMethods, IList<AuthenticationMethod> failedAuthenticationMethods, ref SshAuthenticationException authenticationException)
         {
             if (!allowedAuthenticationMethods.Any())
             {
@@ -447,7 +447,7 @@ namespace Renci.SshNet
             var matchingAuthenticationMethods = AuthenticationMethods.Where(a => allowedAuthenticationMethods.Contains(a.Name)).ToList();
             if (!matchingAuthenticationMethods.Any())
             {
-                authenticationException = new SshAuthenticationException(string.Format("No suitable authentication method found to complete authentication ({0}).", string.Join(",", allowedAuthenticationMethods)));
+                authenticationException = new SshAuthenticationException(string.Format("No suitable authentication method found to complete authentication ({0}).", string.Join(",", allowedAuthenticationMethods.ToArray())));
                 return false;
             }