14 references to ActivityType
System.Workflow.Runtime (14)
System\Activities\Statements\Interop.cs (14)
168
if (this.v1Activity == null && this.
ActivityType
!= null)
222
PropertyInfo[] bodyProperties = this.
ActivityType
.GetProperties();
288
if (this.
ActivityType
== null)
295
if (!typeof(System.Workflow.ComponentModel.Activity).IsAssignableFrom(this.
ActivityType
))
301
if (this.
ActivityType
.GetConstructor(Type.EmptyTypes) == null)
487
Debug.Assert(this.
ActivityType
!= null, "ActivityType must be set by the time we get here");
489
System.Workflow.ComponentModel.Activity activity = Activator.CreateInstance(this.
ActivityType
) as System.Workflow.ComponentModel.Activity;
497
Debug.Assert((activity.GetType() == this.
ActivityType
), "activity must be the same type as this.ActivityType");
502
PropertyInfo property = this.
ActivityType
.GetProperty(name);
505
throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, ExecutionStringManager.MetaPropertyDoesNotExist, name, this.
ActivityType
.FullName));
617
PropertyInfo[] bodyProperties = this.
ActivityType
.GetProperties();
1006
if (!typeof(System.Workflow.ComponentModel.Activity).IsAssignableFrom(interop.
ActivityType
))
1012
container.AddService(typeof(ITypeProvider), CreateTypeProvider(interop.
ActivityType
));
1018
foreach (Validator validator in manager.GetValidators(interop.
ActivityType
))