 | PropertyBackingFieldAttribute Constructor (String, Type, Object) |
Namespace: CandlelightAssembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntaxpublic 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