Proprietà InnerXPathString
Specifies the XPath string, or the name of the variable containing the XPath string, depending on the value of InnerXPathStringSourceType.
Spazio dei nomi Microsoft.SqlServer.Dts.Runtime.Enumerators.NodeList
Assembly: Microsoft.SqlServer.ForEachNodeListEnumerator (in Microsoft.SqlServer.ForEachNodeListEnumerator.dll)
Sintassi
'Dichiarazione
Public Property InnerXPathString As String
Get
Set
'Utilizzo
Dim instance As ForEachNodeListEnumerator
Dim value As String
value = instance.InnerXPathString
instance.InnerXPathString = value
public string InnerXPathString { get; set; }
public:
virtual property String^ InnerXPathString {
String^ get () sealed;
void set (String^ value) sealed;
}
abstract InnerXPathString : string with get, set
override InnerXPathString : string with get, set
final function get InnerXPathString () : String
final function set InnerXPathString (value : String)
Valore proprietà
Tipo: System. . :: . .String
A value that represents either the XPath string, the name of the file that contains the XPath string, or the name of the variable that contains the XPath string, depending on the value of InnerXPathStringSourceType.
Implementa
Osservazioni
The XPath expression that applies to the XML file is the outer XPath operation, stored in the OuterXPathString property. If the XPath enumeration type is set to ElementCollection, then the ForeachNodeList enumerator can apply an inner XPath expression, stored in the InnerXPathString property, to a collection of elements.
Vedere anche