Workflow Foundation (WF) -- Why does setting a DependencyProperty to a COM object using SetValue() t
- by stakx
Assume that I have a .NET Workflow Foundation (WF) SequenceActivity class with the following property:
public IWorkspace Workspace { get; set; }
// ^^^^^^^^^^
// important: this is a COM interface type!
public static DependencyProperty WorkspaceProperty = DependencyProperty.Register(
"Workspace",
typeof(IWorkspace),
…