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