Visit(T) Method (ReadOnlyCollection(T), Func(T, T))
Collapse the table of content
Expand the table of content

ExpressionVisitor.Visit(Of T) Method (ReadOnlyCollection(Of T), Func(Of T, T))

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Visits all nodes in the collection using a specified element visitor.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

'Declaration
Public Shared Function Visit(Of T) ( _
	nodes As ReadOnlyCollection(Of T), _
	elementVisitor As Func(Of T, T) _
) As ReadOnlyCollection(Of T)

Type Parameters

T

The type of the nodes.

Parameters

nodes
Type: System.Collections.ObjectModel.ReadOnlyCollection(Of T)
The nodes to visit.
elementVisitor
Type: System.Func(Of T, T)
A delegate that visits a single element, optionally replacing it with a new element.

Return Value

Type: System.Collections.ObjectModel.ReadOnlyCollection(Of T)
The modified node list, if any of the elements were modified; otherwise, returns the original node list.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft