You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -206,6 +245,16 @@ public static ElementCollection GetElementsByTagName(string tagName) {
206
245
returnnull;
207
246
}
208
247
248
+
/// <summary>
249
+
/// Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of the Document tree.
250
+
/// </summary>
251
+
/// <param name="namespaceURI">The namespace URI of the elements to match on. The special value "*" matches all namespaces.</param>
252
+
/// <param name="localName">The local name of the elements to match on. The special value "*" matches all local names.</param>
253
+
/// <returns>A new NodeList object containing all the matched Elements.</returns>
0 commit comments