WmiDataReaderTask Class

Contains the members used to configure and run a WMI Data Reader task, which runs Windows Management Instrumentation (WMI) queries and returns WMI data about a computer system. This class cannot be inherited.

Namespace:  Microsoft.SqlServer.Dts.Tasks.WmiDataReaderTask
Assembly:  Microsoft.SqlServer.WMIDRTask (in Microsoft.SqlServer.WMIDRTask.dll)

Syntax

'Declaration
<GuidAttribute("31665067-4647-43d8-8638-C347E3E5A5C9")> _
Public NotInheritable Class WmiDataReaderTask _
    Inherits Task _
    Implements IWmiDataReaderTask, IDTSBreakpointSite, IDTSSuspend, IDTSComponentPersist
'Usage
Dim instance As WmiDataReaderTask
[GuidAttribute("31665067-4647-43d8-8638-C347E3E5A5C9")]
public sealed class WmiDataReaderTask : Task, 
    IWmiDataReaderTask, IDTSBreakpointSite, IDTSSuspend, IDTSComponentPersist
[GuidAttribute(L"31665067-4647-43d8-8638-C347E3E5A5C9")]
public ref class WmiDataReaderTask sealed : public Task, 
    IWmiDataReaderTask, IDTSBreakpointSite, IDTSSuspend, IDTSComponentPersist
[<SealedAttribute>]
[<GuidAttribute("31665067-4647-43d8-8638-C347E3E5A5C9")>]
type WmiDataReaderTask =  
    class
        inherit Task
        interface IWmiDataReaderTask
        interface IDTSBreakpointSite
        interface IDTSSuspend
        interface IDTSComponentPersist
    end
public final class WmiDataReaderTask extends Task implements IWmiDataReaderTask, IDTSBreakpointSite, IDTSSuspend, IDTSComponentPersist

Remarks

The class uses a WMIConn connection to connect to a server, execute a Windows Management Instrumentation Query Language (WQL) query against it, and return the results. The WQL query can either be provided directly, or a variable or file connection can be used to dynamically provide WQL queries at execution time.

Similarly, this class can use either a file connection or variable to receive the results of the WQL query. The output type of the WQL query results can also be specified.

For more information about the features of this task, see WMI Data Reader Task.

Inheritance Hierarchy

System.Object
  Microsoft.SqlServer.Dts.Runtime.DtsObject
    Microsoft.SqlServer.Dts.Runtime.Task
      Microsoft.SqlServer.Dts.Tasks.WmiDataReaderTask.WmiDataReaderTask

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.