10 references to RootComponentClassName
System.Workflow.Activities (1)
InvokeSchedule.cs (1)
133
if (designerHost != null && String.Compare(designerHost.
RootComponentClassName
, type.FullName, StringComparison.Ordinal) == 0)
System.Workflow.ComponentModel (9)
AuthoringOM\Compiler\Validation\BindValidator.cs (1)
835
refActivityType = typeProvider.GetType(designerHost.
RootComponentClassName
);
AuthoringOM\Design\CustomActivityDesigner.cs (3)
270
string className = host.
RootComponentClassName
;
355
memberCreationService.UpdateBaseType(host.
RootComponentClassName
, newBaseType);
380
Type rootComponentType = typeProvider.GetType(host.
RootComponentClassName
);
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
419
activityType = typeProvider.GetType(designerHost.
RootComponentClassName
, false);
AuthoringOM\Design\IdentifierCreationService.cs (1)
193
string className = host.
RootComponentClassName
;
AuthoringOM\Design\PropertyDescriptors.cs (3)
118
int indexOfDot = host.
RootComponentClassName
.LastIndexOf('.');
120
newClassName = host.
RootComponentClassName
.Substring(0, indexOfDot + 1) + name;
654
memberCreationService.CreateField(designerHost.
RootComponentClassName
, activityBind.Path, boundType, null, MemberAttributes.Public, null, false);