11 references to ItemPropertyKind
Microsoft.CodeAnalysis.Features (11)
Completion\Providers\ImportCompletionProvider\TypeImportCompletionCacheEntry.cs (11)
218private readonly ItemPropertyKind _properties = (isPublic ? ItemPropertyKind.IsPublic : 0) 219| (isGeneric ? ItemPropertyKind.IsGeneric : 0) 220| (isAttribute ? ItemPropertyKind.IsAttribute : 0) 221| (isEnumBaseType ? ItemPropertyKind.IsEnumBaseType : 0) 222| (isEditorBrowsableStateAdvanced ? ItemPropertyKind.IsEditorBrowsableStateAdvanced : 0); 227=> (_properties & ItemPropertyKind.IsPublic) != 0; 230=> (_properties & ItemPropertyKind.IsGeneric) != 0; 233=> (_properties & ItemPropertyKind.IsAttribute) != 0; 236=> (_properties & ItemPropertyKind.IsEnumBaseType) != 0; 239=> (_properties & ItemPropertyKind.IsEditorBrowsableStateAdvanced) != 0;