Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
Exports data to an .xml file.
Espacio de nombres: Microsoft.SqlServer.Dts.Runtime.Enumerators.Item
Ensamblado: Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)
Sintaxis
'Declaración
Public Sub ExportXML ( _
bstrFileName As String _
)
'Uso
Dim instance As ForEachItemEnumerator
Dim bstrFileName As String
instance.ExportXML(bstrFileName)
public void ExportXML(
string bstrFileName
)
public:
void ExportXML(
String^ bstrFileName
)
member ExportXML :
bstrFileName:string -> unit
public function ExportXML(
bstrFileName : String
)
Parámetros
- bstrFileName
Tipo: System.String
The name of the .xml file to which to export and save the data.
Comentarios
Shown below is the format of the For Each Item Enumerator .xml file.
<FEIEItems>
<FEIEItem>
<FEIEItemValue Type="3" Value="11"/>
<FEIEItemValue Type="3" Value="12"/>
</FEIEItem>
<FEIEItem>
<FEIEItemValue Type="3" Value="21"/>
<FEIEItemValue Type="3" Value="22"/>
</FEIEItem>
</FEIEItems>
The Type attribute of the FEIEItemValue element specifies the type of the Value attribute for this element. The Value attribute specifies the actual value of the ItemValue.
The value used for the Type attribute is a value from the VarEnum enumeration. For more information, see "VarEnum Enumeration" in the Microsoft .NET Framework Class Library.
Vea también
Referencia
Espacio de nombres Microsoft.SqlServer.Dts.Runtime.Enumerators.Item