System.ComponentModel.ProvidePropertyAttribute
namespace System.ComponentModel
{
public sealed class ProvidePropertyAttribute : Attribute
{
public string PropertyName { get; }
public string ReceiverTypeName { get; }
public ProvidePropertyAttribute(string propertyName, string receiverTypeName);
public ProvidePropertyAttribute(string propertyName, Type receiverType);
}
}