IMemberCreationService.CreateProperty Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a property on the specified class by using the specified property name, property type and attributes.
public:
void CreateProperty(System::String ^ className, System::String ^ propertyName, Type ^ propertyType, cli::array <System::Workflow::ComponentModel::Compiler::AttributeInfo ^> ^ attributes, bool emitDependencyProperty, bool isMetaProperty, bool isAttached, Type ^ ownerType, bool isReadOnly);
public void CreateProperty (string className, string propertyName, Type propertyType, System.Workflow.ComponentModel.Compiler.AttributeInfo[] attributes, bool emitDependencyProperty, bool isMetaProperty, bool isAttached, Type ownerType, bool isReadOnly);
abstract member CreateProperty : string * string * Type * System.Workflow.ComponentModel.Compiler.AttributeInfo[] * bool * bool * bool * Type * bool -> unit
Public Sub CreateProperty (className As String, propertyName As String, propertyType As Type, attributes As AttributeInfo(), emitDependencyProperty As Boolean, isMetaProperty As Boolean, isAttached As Boolean, ownerType As Type, isReadOnly As Boolean)
Parameters
- className
- String
A string that defines the name of the class to add the field.
- propertyName
- String
A string that defines the name of the field.
- attributes
- AttributeInfo[]
An AttributeInfo array that contains information on all attributes to assign to the property.
- emitDependencyProperty
- Boolean
true
to emit any dependency properties associated with the property; otherwise, false
.
- isMetaProperty
- Boolean
true
to create the property as a meta property; otherwise, false
.
- isAttached
- Boolean
true
to indicate that the emitted dependency property has its IsAttached property set to true
; otherwise, false
.
- isReadOnly
- Boolean
true
to create the property as a read-only property; false
to create the property as a read-write property.