2 types derived from InteropProperty
System.Workflow.Runtime (2)
System\Activities\Statements\Interop.cs (2)
1581
class ArgumentProperty :
InteropProperty
1641
class LiteralProperty :
InteropProperty
7 references to InteropProperty
System.Workflow.Runtime (7)
System\Activities\Statements\Interop.cs (7)
44
IList<
InteropProperty
> exposedBodyProperties;
634
this.exposedBodyProperties = new List<
InteropProperty
>(bodyProperties.Length);
638
InteropProperty
descriptor = new LiteralProperty(this, property.Name, property.PropertyType, newAttributes);
643
InteropProperty
inDescriptor;
655
InteropProperty
outDescriptor = new ArgumentProperty(this, property.Name + OutArgumentSuffix, Argument.Create(property.PropertyType, ArgumentDirection.Out), newAttributes);
715
InteropProperty
intProp = pd as
InteropProperty
;