Propriedade do RDL WmiDataReaderTask.Output
Gets or sets an Object that contains the results of the WmiDataReaderTask task.
Namespace: Microsoft.SqlServer.Dts.Tasks.WmiDataReaderTask
Assembly: Microsoft.SqlServer.WMIDRTask (em Microsoft.SqlServer.WMIDRTask.dll)
Sintaxe
'Declaração
Public Property Output As Object
Get
Set
'Uso
Dim instance As WmiDataReaderTask
Dim value As Object
value = instance.Output
instance.Output = value
public Object Output { get; set; }
public:
virtual property Object^ Output {
Object^ get () sealed;
void set (Object^ value) sealed;
}
abstract Output : Object with get, set
override Output : Object with get, set
final function get Output () : Object
final function set Output (value : Object)
Valor da propriedade
Tipo: System.Object
An Object that contains the results of the task.
Implementa
Comentários
The Output property provides direct access to the output of the task, depending on the OutputType value specified in OutputType. If OutputType is set to DataTable, then this property contains a boxed reference to the DataTable returned by WMI. Otherwise, this property contains a boxed reference to the String returned by WMI.