5 overrides of BinderSpecificLookupOptions
Microsoft.CodeAnalysis.VisualBasic (5)
Binding\BackstopBinder.vb (1)
305Friend Overrides Function BinderSpecificLookupOptions(options As LookupOptions) As LookupOptions
Binding\DocumentationCommentBinder.vb (1)
169Friend Overrides Function BinderSpecificLookupOptions(options As LookupOptions) As LookupOptions
Binding\EarlyWellKnownAttributeBinder.vb (1)
220Friend Overrides Function BinderSpecificLookupOptions(options As LookupOptions) As LookupOptions
Binding\IgnoreAccessibilityBinder.vb (1)
16Friend Overrides Function BinderSpecificLookupOptions(options As LookupOptions) As LookupOptions
Binding\SemanticModelBinder.vb (1)
28Friend Overrides Function BinderSpecificLookupOptions(ByVal options As LookupOptions) As LookupOptions
15 references to BinderSpecificLookupOptions
Microsoft.CodeAnalysis.VisualBasic (15)
Binding\Binder.vb (3)
117Return m_containingBinder.BinderSpecificLookupOptions(options) 122Return (BinderSpecificLookupOptions(Nothing) And LookupOptions.IgnoreAccessibility) = 149options = BinderSpecificLookupOptions(options)
Binding\Binder_Lookup.vb (7)
30options = BinderSpecificLookupOptions(options) 42options = BinderSpecificLookupOptions(options) 56options = BinderSpecificLookupOptions(options) 68options = BinderSpecificLookupOptions(options) 82options = BinderSpecificLookupOptions(options) 94options = BinderSpecificLookupOptions(options) 103options = BinderSpecificLookupOptions(options)
Binding\DocumentationCommentBinder.vb (1)
170Return ContainingBinder.BinderSpecificLookupOptions(options) Or LookupOptions.UseBaseReferenceAccessibility
Binding\EarlyWellKnownAttributeBinder.vb (1)
222Return ContainingBinder.BinderSpecificLookupOptions(options) Or LookupOptions.IgnoreExtensionMethods
Binding\IgnoreAccessibilityBinder.vb (1)
17Return ContainingBinder.BinderSpecificLookupOptions(options) Or LookupOptions.IgnoreAccessibility
Binding\SemanticModelBinder.vb (2)
30Return MyBase.BinderSpecificLookupOptions(options) Or LookupOptions.IgnoreAccessibility 32Return MyBase.BinderSpecificLookupOptions(options)