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