Skip to content
Concord

Interface IAttachedPropertyRegistry

Namespace
Concord.Orchestration
Assembly
Concord.Orchestration.dll

Runtime-adapter-supplied registry that registers a declared field as an attached property on a target type. The runtime adapter owns the side-table storage; the field on the declaration is only a declaration.

public interface IAttachedPropertyRegistry

Methods

RegisterAttachedProperty(Type, string, Type)

Registers an attached-property named name of type valueType on baseType.

void RegisterAttachedProperty(Type baseType, string name, Type valueType)

Parameters

baseType Type

The target type the property attaches to.

name string

The declared field name.

valueType Type

The declared field type.