Метод XmlUtility.SelectChildrenByName
Selects the children elements by name. Не ссылайтесь на этот элемент непосредственно из кода. Он поддерживает работу инфраструктуры SQL Server.
Пространство имен: Microsoft.SqlServer.Management.Sdk.Sfc
Сборка: Microsoft.SqlServer.Management.Sdk.Sfc (в Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Синтаксис
'Декларация
Public Shared Function SelectChildrenByName ( _
reader As XmlTextReader, _
strName As String _
) As Boolean
'Применение
Dim reader As XmlTextReader
Dim strName As String
Dim returnValue As Boolean
returnValue = XmlUtility.SelectChildrenByName(reader, _
strName)
public static bool SelectChildrenByName(
XmlTextReader reader,
string strName
)
public:
static bool SelectChildrenByName(
XmlTextReader^ reader,
String^ strName
)
static member SelectChildrenByName :
reader:XmlTextReader *
strName:string -> bool
public static function SelectChildrenByName(
reader : XmlTextReader,
strName : String
) : boolean
Параметры
- reader
Тип: System.Xml.XmlTextReader
The text reader to use.
- strName
Тип: System.String
A string value for the Name.
Возвращаемое значение
Тип: System.Boolean
true if the children elements are selected by name; otherwise, false.