12 references to CustomAttributeValueTreatment
System.Reflection.Metadata (12)
System\Reflection\Metadata\MetadataReader.WinMD.cs (6)
665internal CustomAttributeValueTreatment CalculateCustomAttributeValueTreatment(CustomAttributeHandle handle) 677return CustomAttributeValueTreatment.None; 685return CustomAttributeValueTreatment.AttributeUsageVersionAttribute; 690return CustomAttributeValueTreatment.AttributeUsageDeprecatedAttribute; 695return allowMultiple ? CustomAttributeValueTreatment.AttributeUsageAllowMultiple : CustomAttributeValueTreatment.AttributeUsageAllowSingle;
System\Reflection\Metadata\TypeSystem\CustomAttribute.cs (6)
109CustomAttributeValueTreatment treatment = _reader.CalculateCustomAttributeValueTreatment(Handle); 118private BlobHandle GetProjectedValue(CustomAttributeValueTreatment treatment) 124case CustomAttributeValueTreatment.AttributeUsageVersionAttribute: 125case CustomAttributeValueTreatment.AttributeUsageDeprecatedAttribute: 130case CustomAttributeValueTreatment.AttributeUsageAllowMultiple: 135case CustomAttributeValueTreatment.AttributeUsageAllowSingle: