3 instantiations of DesignTimeType
System.Workflow.ComponentModel (3)
AuthoringOM\Compiler\TypeSystem\CodeDomLoader.cs (1)
48
partialType = new
DesignTimeType
(null, codeTypeDeclaration.Name, codeNamespace.Imports, codeNamespace.Name, this.typeProvider);
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
1169
partialType = new
DesignTimeType
(this, codeType.Name, this.codeNamespaceImports, this.fullName, this.typeProvider);
AuthoringOM\Compiler\TypeSystem\TypeProvider.cs (1)
368
returnType = new
DesignTimeType
(null, name, this);
53 references to DesignTimeType
System.Workflow.ComponentModel (53)
AuthoringOM\Compiler\TypeSystem\AttributeInfo.cs (1)
204
typeName =
DesignTimeType
.GetTypeNameFromCodeTypeReference((this.ArgumentValues[argumentIndex] as CodeTypeOfExpression).Type, null);
AuthoringOM\Compiler\TypeSystem\CodeDomLoader.cs (2)
45
DesignTimeType
partialType = this.typeProvider.GetType(typename, false) as
DesignTimeType
;
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (2)
914
internal static string GetTypeNameFromCodeTypeReference(CodeTypeReference codeTypeReference,
DesignTimeType
declaringType)
1173
((
DesignTimeType
)partialType).AddCodeTypeDeclaration(codeType);
AuthoringOM\Compiler\TypeSystem\EventInfo.cs (6)
25
private
DesignTimeType
declaringType;
28
internal DesignTimeEventInfo(
DesignTimeType
declaringType, CodeMemberEvent codeDomEvent)
57
Type handlerType = declaringType.ResolveType(
DesignTimeType
.GetTypeNameFromCodeTypeReference(this.codeDomEvent.Type, declaringType));
76
Type handlerType = declaringType.ResolveType(
DesignTimeType
.GetTypeNameFromCodeTypeReference(this.codeDomEvent.Type, declaringType));
139
this.attributes = Helper.LoadCustomAttributes(this.codeDomEvent.CustomAttributes, this.DeclaringType as
DesignTimeType
);
150
this.attributes = Helper.LoadCustomAttributes(this.codeDomEvent.CustomAttributes, this.DeclaringType as
DesignTimeType
);
AuthoringOM\Compiler\TypeSystem\FieldInfo.cs (5)
21
private
DesignTimeType
declaringType;
24
internal DesignTimeFieldInfo(
DesignTimeType
declaringType, CodeMemberField codeDomField)
57
return declaringType.ResolveType(
DesignTimeType
.GetTypeNameFromCodeTypeReference(this.codeDomField.Type, declaringType));
115
this.attributes = Helper.LoadCustomAttributes(this.codeDomField.CustomAttributes, this.DeclaringType as
DesignTimeType
);
126
this.attributes = Helper.LoadCustomAttributes(this.codeDomField.CustomAttributes, this.DeclaringType as
DesignTimeType
);
AuthoringOM\Compiler\TypeSystem\Helper.cs (5)
137
internal static Attribute[] LoadCustomAttributes(CodeAttributeDeclarationCollection codeAttributeCollection,
DesignTimeType
declaringType)
237
baseMemberInfo = ((
DesignTimeType
)memberInfo.DeclaringType).GetBaseMember(memberInfo.GetType(), memberInfo.DeclaringType.BaseType, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance, new
DesignTimeType
.MemberSignature(memberInfo));
274
baseMemberInfo = ((
DesignTimeType
)memberInfo.DeclaringType).GetBaseMember(memberInfo.GetType(), memberInfo.DeclaringType.BaseType, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance, new
DesignTimeType
.MemberSignature(memberInfo));
AuthoringOM\Compiler\TypeSystem\MethodInfo.cs (10)
24
private
DesignTimeType
declaringType = null;
29
internal DesignTimeConstructorInfo(
DesignTimeType
declaringType, CodeMemberMethod codeConstructor)
122
this.attributes = Helper.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as
DesignTimeType
);
132
this.attributes = Helper.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as
DesignTimeType
);
153
private
DesignTimeType
declaringType;
158
internal DesignTimeMethodInfo(
DesignTimeType
declaringType, CodeMemberMethod methodInfo, bool isSpecialName)
165
internal DesignTimeMethodInfo(
DesignTimeType
declaringType, CodeMemberMethod methodInfo)
178
return declaringType.ResolveType(
DesignTimeType
.GetTypeNameFromCodeTypeReference(this.methodInfo.ReturnType, declaringType));
286
this.attributes = Helper.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as
DesignTimeType
);
296
this.attributes = Helper.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as
DesignTimeType
);
AuthoringOM\Compiler\TypeSystem\ParameterInfo.cs (3)
48
string type =
DesignTimeType
.GetTypeNameFromCodeTypeReference(this.codeParameterType, (this.Member.DeclaringType as
DesignTimeType
));
51
this.ClassImpl = (this.Member.DeclaringType as
DesignTimeType
).ResolveType(type);
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (8)
20
private
DesignTimeType
declaringType = null;
25
internal DesignTimePropertyInfo(
DesignTimeType
declaringType, CodeMemberProperty property)
47
return declaringType.ResolveType(
DesignTimeType
.GetTypeNameFromCodeTypeReference(this.property.Type, declaringType));
192
this.attributes = Helper.LoadCustomAttributes(this.property.CustomAttributes, this.DeclaringType as
DesignTimeType
);
203
this.attributes = Helper.LoadCustomAttributes(this.property.CustomAttributes, this.DeclaringType as
DesignTimeType
);
291
return ((
DesignTimeType
)this.DeclaringType).ResolveType(
DesignTimeType
.GetTypeNameFromCodeTypeReference(this.property.CodeMemberProperty.Type, ((
DesignTimeType
)this.DeclaringType)));
AuthoringOM\Compiler\TypeSystem\TypeProvider.cs (6)
697
if (fromType is RTTypeWrapper || fromType is
DesignTimeType
)
699
if (!(toType is RTTypeWrapper) && !(toType is
DesignTimeType
))
702
ITypeProvider provider = fromType is RTTypeWrapper ? (fromType as RTTypeWrapper).Provider : (fromType as
DesignTimeType
).Provider;
707
else if (toType is RTTypeWrapper || toType is
DesignTimeType
)
709
if (!(fromType is RTTypeWrapper) && !(fromType is
DesignTimeType
))
712
ITypeProvider provider = toType is RTTypeWrapper ? (toType as RTTypeWrapper).Provider : (toType as
DesignTimeType
).Provider;
AuthoringOM\Design\CustomActivityDesigner.cs (2)
382
if (type is
DesignTimeType
&& rootComponentType != null && rootComponentType.Assembly == type.Assembly)
699
if (TypeProvider.IsAssignable(typeof(Activity), type) && type.IsPublic && !type.IsSealed && !type.IsAbstract && !(type is
DesignTimeType
))
AuthoringOM\Design\WorkflowInlining.cs (3)
357
if (this.targetWorkflowType == null || this.targetWorkflowType is
DesignTimeType
)
387
while (dependencyObjectType != null && dependencyObjectType is
DesignTimeType
)
474
if (this.targetWorkflowType is
DesignTimeType
)