public void readProperties() { _connection = new DSEJetConnection(ipaddress); _dse = new DSEJet(_connection, 500, null); _dse.Connect(200); System.Threading.Thread.Sleep(500); foreach (var prop in _dse.GetType().GetProperties()) { if (prop.ToString().Equals("Int32 LowPasCutOffFrequency") || prop.ToString().Equals("Int32 LowPassFilterOrder")) { continue; } Assert.AreNotEqual(null, prop.GetValue(_dse)); } _dse.Disconnect(); }