System.ComponentModel.DataObjectMethodAttribute
namespace System.ComponentModel
{
public sealed class DataObjectMethodAttribute : Attribute
{
public bool IsDefault { get; }
public DataObjectMethodType MethodType { get; }
public DataObjectMethodAttribute(DataObjectMethodType methodType);
public DataObjectMethodAttribute(DataObjectMethodType methodType, bool isDefault);
}
}