24 references to ClassSemanticsMask
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (1)
1387
switch (attributes & TypeAttributes.
ClassSemanticsMask
)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
3214
switch (attributes & TypeAttributes.
ClassSemanticsMask
)
FrameworkFork\Microsoft.CodeDom\System\CodeTypeDeclaration.cs (6)
124
return (_attributes & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Class && !_isEnum && !_isStruct;
130
_attributes &= ~TypeAttributes.
ClassSemanticsMask
;
154
_attributes &= ~TypeAttributes.
ClassSemanticsMask
;
181
_attributes &= ~TypeAttributes.
ClassSemanticsMask
;
202
return (_attributes & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Interface;
208
_attributes &= ~TypeAttributes.
ClassSemanticsMask
;
FrameworkFork\Microsoft.CodeDom\System\CodeTypeDelegate.cs (1)
36
TypeAttributes &= ~TypeAttributes.
ClassSemanticsMask
;
System.CodeDom (10)
Microsoft\CSharp\CSharpCodeGenerator.cs (1)
2355
switch (attributes & TypeAttributes.
ClassSemanticsMask
)
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
725
switch (attributes & TypeAttributes.
ClassSemanticsMask
)
System\CodeDom\CodeTypeDeclaration.cs (6)
47
get => (TypeAttributes & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Class && !_isEnum && !_isStruct;
52
TypeAttributes &= ~TypeAttributes.
ClassSemanticsMask
;
67
TypeAttributes &= ~TypeAttributes.
ClassSemanticsMask
;
82
TypeAttributes &= ~TypeAttributes.
ClassSemanticsMask
;
92
get => (TypeAttributes & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Interface;
97
TypeAttributes &= ~TypeAttributes.
ClassSemanticsMask
;
System\CodeDom\CodeTypeDelegate.cs (1)
14
TypeAttributes &= ~TypeAttributes.
ClassSemanticsMask
;
System\CodeDom\Compiler\CodeGenerator.cs (1)
1145
switch (attributes & TypeAttributes.
ClassSemanticsMask
)
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Type.cs (2)
38
return (GetAttributeFlagsImpl() & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Interface;
102
public bool IsClass => (GetAttributeFlagsImpl() & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Class && !IsValueType;
src\System\Reflection\Associates.cs (1)
90
(RuntimeTypeHandle.GetAttributes(declaredType) & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Class;
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
1128
if ((m_iAttr & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Interface)
System.Reflection.Emit (1)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
388
if ((_attributes & TypeAttributes.
ClassSemanticsMask
) == TypeAttributes.Interface)