11 references to ItemPropertyKind
Microsoft.CodeAnalysis.Features (11)
Completion\Providers\ImportCompletionProvider\TypeImportCompletionCacheEntry.cs (11)
234private readonly ItemPropertyKind _properties = (isPublic ? ItemPropertyKind.IsPublic : 0) 235| (isGeneric ? ItemPropertyKind.IsGeneric : 0) 236| (isAttribute ? ItemPropertyKind.IsAttribute : 0) 237| (isEnumBaseType ? ItemPropertyKind.IsEnumBaseType : 0) 238| (isEditorBrowsableStateAdvanced ? ItemPropertyKind.IsEditorBrowsableStateAdvanced : 0); 243=> (_properties & ItemPropertyKind.IsPublic) != 0; 246=> (_properties & ItemPropertyKind.IsGeneric) != 0; 249=> (_properties & ItemPropertyKind.IsAttribute) != 0; 252=> (_properties & ItemPropertyKind.IsEnumBaseType) != 0; 255=> (_properties & ItemPropertyKind.IsEditorBrowsableStateAdvanced) != 0;