paulwerelds@224: /* paulwerelds@224: moel@344: This Source Code Form is subject to the terms of the Mozilla Public moel@344: License, v. 2.0. If a copy of the MPL was not distributed with this moel@344: file, You can obtain one at http://mozilla.org/MPL/2.0/. paulwerelds@224: moel@344: Copyright (C) 2009-2010 Paul Werelds moel@344: paulwerelds@224: */ paulwerelds@224: paulwerelds@227: namespace OpenHardwareMonitor.WMI { paulwerelds@224: interface IWmiObject { paulwerelds@224: // Both of these get exposed to WMI paulwerelds@223: string Name { get; } paulwerelds@223: string Identifier { get; } paulwerelds@223: paulwerelds@224: // Not exposed. paulwerelds@223: void Update(); paulwerelds@223: } paulwerelds@223: }