Slight extension of the _wmi_object class to allow objects which are
the result of events firing to return extra information such as the type
of event.
|
|
|
|
|
|
|
__repr__(self)
Indicate both the fact that this is a wrapped WMI object and the WMI
object's own identifying class.
(Inherited from wmi._wmi_object) |
source code
|
|
|
__setattr__(self,
attribute,
value)
If the attribute to be set is valid for the proxied COM object, set
that objects's parameter value; if not, raise an exception.
(Inherited from wmi._wmi_object) |
source code
|
|
|
__str__(self)
For a call to print [object] return the OLE description of the
properties / values of the object
(Inherited from wmi._wmi_object) |
source code
|
|
|
|
|
|
|
|
|
associators(self,
wmi_association_class="",
wmi_result_class="")
Return a list of objects related to this one, optionally limited
either by association class (ie the name of the class which relates
them) or by result class (ie the name of the class which would be
retrieved)
(Inherited from wmi._wmi_object) |
source code
|
|
|
|
|
|
|
|
|
references(self,
wmi_class="")
Return a list of associations involving this object, optionally
limited by the result class (the name of the association class).
(Inherited from wmi._wmi_object) |
source code
|
|
|
|