Implemented interface member:
property
Attributes
System.Runtime.InteropServices._Type.Attributes
28 references to Attributes
mscorlib (17)
system\reflection\customattribute.cs (1)
1899
if ((attributeType.
Attributes
& TypeAttributes.WindowsRuntime) == TypeAttributes.WindowsRuntime)
system\reflection\emit\assemblybuilder.cs (4)
2127
return AddExportedTypeOnDisk(GetNativeHandle(), type.FullName, tkResolutionScope, tkTypeDef, type.
Attributes
);
2132
return AddExportedTypeOnDisk(GetNativeHandle(), type.Name, tkResolutionScope, tkTypeDef, type.
Attributes
);
2142
return AddExportedTypeInMemory(GetNativeHandle(), type.FullName, tkResolutionScope, tkTypeDef, type.
Attributes
);
2147
return AddExportedTypeInMemory(GetNativeHandle(), type.Name, tkResolutionScope, tkTypeDef, type.
Attributes
);
system\reflection\emit\enumbuilder.cs (1)
237
return m_typeBuilder.
Attributes
;
system\reflection\emit\methodbuilder.cs (1)
143
if ((type.
Attributes
& TypeAttributes.Interface) == TypeAttributes.Interface)
system\reflection\emit\symboltype.cs (1)
520
return baseType.
Attributes
;
system\reflection\emit\typebuilder.cs (2)
344
if ((type.
Attributes
& TypeAttributes.VisibilityMask) == TypeAttributes.NestedPublic)
352
if ((type.
Attributes
& TypeAttributes.VisibilityMask) == TypeAttributes.Public)
system\reflection\emit\typebuilderinstantiation.cs (1)
193
protected override TypeAttributes GetAttributeFlagsImpl() { return m_type.
Attributes
; }
system\reflection\typedelegator.cs (1)
187
return typeImpl.
Attributes
;
system\runtime\interopservices\attributes.cs (4)
643
if ((type.
Attributes
& TypeAttributes.Import) == 0)
651
return (type.
Attributes
& TypeAttributes.Import) != 0;
881
switch (type.
Attributes
& TypeAttributes.LayoutMask)
890
switch (type.
Attributes
& TypeAttributes.StringFormatMask)
system\serializableattribute.cs (1)
26
return (type.
Attributes
& TypeAttributes.Serializable) == TypeAttributes.Serializable ? new SerializableAttribute() : null;
System (2)
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (1)
1535
if ((iface.
Attributes
& (TypeAttributes.Public | TypeAttributes.NestedPublic)) != 0) {
net\System\Net\Configuration\DefaultProxySection.cs (1)
188
if ((theType.
Attributes
& TypeAttributes.VisibilityMask) != TypeAttributes.Public)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1078
protected override TypeAttributes GetAttributeFlagsImpl() { return _baseReflectionType.
Attributes
; }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1078
protected override TypeAttributes GetAttributeFlagsImpl() { return _baseReflectionType.
Attributes
; }
System.Data.Entity (2)
System\Data\Objects\Internal\EntityProxyFactory.cs (2)
566
TypeAttributes access = ospaceEntityType.ClrType.
Attributes
& TypeAttributes.VisibilityMask;
707
if ((BaseType.
Attributes
& TypeAttributes.Serializable) == TypeAttributes.Serializable)
System.Web (1)
Compilation\DelayLoadType.cs (1)
81
return Type.
Attributes
;
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\TypeSystem\AssemblyLoader.cs (2)
102
if ((type != null) && (type.IsPublic || type.IsNestedPublic || (this.isLocalAssembly && type.
Attributes
!= TypeAttributes.NestedPrivate)))
117
if (type.IsPublic || (this.isLocalAssembly && type.
Attributes
!= TypeAttributes.NestedPrivate))
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
104
this.typeAttributes = elementType.
Attributes
& TypeAttributes.VisibilityMask | TypeAttributes.Class | TypeAttributes.Sealed | TypeAttributes.Serializable;
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
749
return this.runtimeType.
Attributes
;