Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Indicates whether an element should be visited.
Namespace: Microsoft.VisualStudio.Modeling
Assembly: Microsoft.VisualStudio.Modeling.Sdk (in Microsoft.VisualStudio.Modeling.Sdk.dll)
Syntax
'Declaration
Public Enumeration VisitorFilterResult
'Usage
Dim instance As VisitorFilterResult
public enum VisitorFilterResult
public enum class VisitorFilterResult
public enum VisitorFilterResult
Members
Member name | Description | |
---|---|---|
DoNotCare | No preference whether the element will be added by others. If all visitors respond DoNotCare, then the element will not be visited. | |
Yes | The element should be visited unless there is a Never result by another filter which will override any Yes results. | |
Never | The element will not be visited and the element will be excluded from the closure. This value overrides all Yes values. |
Remarks
A Never value overrides any Yes values.