IMemberCreationService.CreateProperty Method

Definition

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.

propertyType
Type

The Type of the new property.

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.

ownerType
Type

The Type that is declaring the dependency property.

isReadOnly
Boolean

true to create the property as a read-only property; false to create the property as a read-write property.

Applies to