Tamir.SharpSsh.jsch.JSch.removeSession C# (CSharp) Method

removeSession() private method

private removeSession ( Session session ) : bool
session Session
return bool
		internal bool removeSession(Session session)
		{
			lock(pool)
			{
				try
				{
					pool.Remove(session);
					return true;
				}
				catch (NotSupportedException)
				{
					return false;
				}
			}
		}