22 references to ThisType
System.Workflow.Activities (22)
Rules\Executor.cs (2)
213
if (validation.
ThisType
!= thisObject.GetType())
216
RuleDecompiler.DecompileType(validation.
ThisType
),
Rules\Expressions.cs (1)
56
return new RuleExpressionInfo(validation.
ThisType
);
Rules\Parser\Parser.cs (12)
641
allTypes = validation.
ThisType
.Assembly.GetTypes();
675
if (type.IsNotPublic && (type.Assembly != null && type.Assembly != validation.
ThisType
.Assembly))
815
Type thisType = validation.
ThisType
;
1501
parserContext.SetTypeMemberCompletions(validation.ExpressionInfo(primaryExpr).ExpressionType, validation.
ThisType
, primaryExpr is CodeTypeReferenceExpression, validation);
1539
parserContext.SetMethodCompletions(validation.ExpressionInfo(postfixExpr).ExpressionType, validation.
ThisType
, methodName, isStatic, !isStatic, validation);
1607
Type thisType = Validator.
ThisType
;
1668
Type thisType = Validator.
ThisType
;
1859
parserContext.SetNestedClassCompletions(type, validation.
ThisType
);
1920
parserContext.SetConstructorCompletions(type, Validator.
ThisType
);
1943
if (type.Assembly == validation.
ThisType
.Assembly)
2243
parserContext.SetTypeMemberCompletions(currentType, validation.
ThisType
, true, validation);
2255
if (currentType.Assembly == validation.
ThisType
.Assembly)
Rules\RuleAction.cs (1)
106
Type currentType = validator.
ThisType
;
Rules\RuleSet.cs (1)
153
if ((cachedEngine == null) || (cachedValidation == null) || (cachedValidation.
ThisType
!= activityType))
Rules\RuleValidation.cs (2)
2332
if (isPrivate && targetType !=
ThisType
)
2343
if (isInternal &&
ThisType
.Assembly != methodAssembly)
Rules\Walker.cs (3)
134
if ((validation.
ThisType
!= null) && (validation.
ThisType
.Name != null))
136
typeName = validation.
ThisType
.Name;