9 references to ItemPropertyKind
Microsoft.CodeAnalysis.Features (9)
Completion\Providers\ImportCompletionProvider\TypeImportCompletionCacheEntry.cs (9)
205
private readonly
ItemPropertyKind
_properties;
210
_properties = (isPublic ?
ItemPropertyKind
.IsPublic : 0)
211
| (isGeneric ?
ItemPropertyKind
.IsGeneric : 0)
212
| (isAttribute ?
ItemPropertyKind
.IsAttribute : 0)
213
| (isEditorBrowsableStateAdvanced ?
ItemPropertyKind
.IsEditorBrowsableStateAdvanced : 0);
219
=> (_properties &
ItemPropertyKind
.IsPublic) != 0;
222
=> (_properties &
ItemPropertyKind
.IsGeneric) != 0;
225
=> (_properties &
ItemPropertyKind
.IsAttribute) != 0;
228
=> (_properties &
ItemPropertyKind
.IsEditorBrowsableStateAdvanced) != 0;