System.Reflection.Metadata.PropertyDefinition
namespace System.Reflection.Metadata
{
public struct PropertyDefinition
{
public StringHandle Name { get; }
public PropertyAttributes Attributes { get; }
public BlobHandle Signature { get; }
public ConstantHandle GetDefaultValue();
public CustomAttributeHandleCollection GetCustomAttributes();
public PropertyAccessors GetAccessors();
}
}