System.ComponentModel.AttributeProviderAttribute
namespace System.ComponentModel
{
public class AttributeProviderAttribute : Attribute
{
public string PropertyName { get; }
public string TypeName { get; }
public AttributeProviderAttribute(string typeName);
public AttributeProviderAttribute(string typeName, string propertyName);
public AttributeProviderAttribute(Type type);
}
}