Pourquoi n'essayez-vous pas simplement de créer la connexion et d'intercepter l'exception en cas d'échec ?
Peut-être quelque chose comme ça :
public bool CheckConnection()
{
string connectionString = ""; //Get from configuraiton.
using(var conn = new OracleConnection(connectionString))
{
try
{
conn.Open();
return true;
}
catch
{
return false;
}
}
}