ExpressionVisitor.VisitAndConvert 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
식을 열어 보고 결과를 원래 식 형식으로 다시 캐스팅합니다.
오버로드
VisitAndConvert<T>(ReadOnlyCollection<T>, String) |
컬렉션에서 모든 식을 열어 보고 결과를 원래 식 형식으로 다시 캐스팅합니다. |
VisitAndConvert<T>(T, String) |
식을 열어 보고 결과를 원래 식 형식으로 다시 캐스팅합니다. |
VisitAndConvert<T>(ReadOnlyCollection<T>, String)
- Source:
- ExpressionVisitor.cs
- Source:
- ExpressionVisitor.cs
- Source:
- ExpressionVisitor.cs
컬렉션에서 모든 식을 열어 보고 결과를 원래 식 형식으로 다시 캐스팅합니다.
public:
generic <typename T>
where T : System::Linq::Expressions::Expression System::Collections::ObjectModel::ReadOnlyCollection<T> ^ VisitAndConvert(System::Collections::ObjectModel::ReadOnlyCollection<T> ^ nodes, System::String ^ callerName);
public System.Collections.ObjectModel.ReadOnlyCollection<T> VisitAndConvert<T> (System.Collections.ObjectModel.ReadOnlyCollection<T> nodes, string callerName) where T : System.Linq.Expressions.Expression;
public System.Collections.ObjectModel.ReadOnlyCollection<T> VisitAndConvert<T> (System.Collections.ObjectModel.ReadOnlyCollection<T> nodes, string? callerName) where T : System.Linq.Expressions.Expression;
member this.VisitAndConvert : System.Collections.ObjectModel.ReadOnlyCollection<'T (requires 'T :> System.Linq.Expressions.Expression)> * string -> System.Collections.ObjectModel.ReadOnlyCollection<'T (requires 'T :> System.Linq.Expressions.Expression)> (requires 'T :> System.Linq.Expressions.Expression)
Public Function VisitAndConvert(Of T As Expression) (nodes As ReadOnlyCollection(Of T), callerName As String) As ReadOnlyCollection(Of T)
형식 매개 변수
- T
식의 형식입니다.
매개 변수
- nodes
- ReadOnlyCollection<T>
열어 볼 식입니다.
- callerName
- String
호출 메서드의 이름으로, 더 나은 오류 메시지를 보고하는 데 사용됩니다.
반환
식이 수정되었으면 수정된 식 컬렉션이고, 그렇지 않으면 원래 식 컬렉션을 반환합니다.
예외
다른 형식을 반환한 식 중 하나에 대한 방문 메서드입니다.
적용 대상
VisitAndConvert<T>(T, String)
- Source:
- ExpressionVisitor.cs
- Source:
- ExpressionVisitor.cs
- Source:
- ExpressionVisitor.cs
식을 열어 보고 결과를 원래 식 형식으로 다시 캐스팅합니다.
public:
generic <typename T>
where T : System::Linq::Expressions::Expression T VisitAndConvert(T node, System::String ^ callerName);
public T VisitAndConvert<T> (T node, string callerName) where T : System.Linq.Expressions.Expression;
public T? VisitAndConvert<T> (T? node, string? callerName) where T : System.Linq.Expressions.Expression;
member this.VisitAndConvert : 'T * string -> 'T (requires 'T :> System.Linq.Expressions.Expression)
Public Function VisitAndConvert(Of T As Expression) (node As T, callerName As String) As T
형식 매개 변수
- T
식의 형식입니다.
매개 변수
- node
- T
열어 볼 식입니다.
- callerName
- String
호출 메서드의 이름으로, 더 나은 오류 메시지를 보고하는 데 사용됩니다.
반환
T
식 또는 하위 식이 수정되었으면 수정된 식이고, 그렇지 않으면 원래 식을 반환합니다.
예외
이 노드에 대한 방문 메서드가 다른 형식을 반환한 경우
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET