VisitorFilterResult Enumeration

 

Indicates whether an element should be visited.

Namespace:   Microsoft.VisualStudio.Modeling
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.12.0.dll)

public enum class VisitorFilterResult

Member nameDescription
DoNotCare

No preference whether the element will be added by others. If all visitors respond DoNotCare, then the element will not be visited.

Never

The element will not be visited and the element will be excluded from the closure. This value overrides all Yes values.

Yes

The element should be visited unless there is a Never result by another filter which will override any Yes results.

A Never value overrides any Yes values.

Return to top
Show: