Click or drag to resize
PropertyBackingFieldAttribute Constructor (String, Type, Object)
Initializes a new instance of the PropertyBackingFieldAttribute class that should use a custom PropertyDrawer associated with another PropertyAttribute to display the decorated field in the inspector.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public PropertyBackingFieldAttribute(
	string propertyName,
	Type propertyAttributeType,
	params Object[] constructorArguments
)

Parameters

propertyName
Type: SystemString
Name of the getter/setter property corresponding to the backing field, or name of getter/setter methods. For example, "Character" could refer to either a property Character { get; set; } or a pair of methods GetCharacter() and SetCharacter().
propertyAttributeType
Type: SystemType
A PropertyAttributeType to specify what custom PropertyDrawer should be used in the inspector.
constructorArguments
Type: SystemObject
Parameters for the override attribute's constructor.
See Also