2 instantiations of TypeExtension
System.Workflow.ComponentModel (2)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (2)
806
propertyValue = new
TypeExtension
((string)propertyValue);
3163
return new
TypeExtension
(value as System.Type);
6 references to TypeExtension
System.Workflow.ComponentModel (6)
AuthoringOM\Serializer\TypeExtensionSerializer.cs (5)
18
TypeExtension
typeExtension = value as
TypeExtension
;
20
throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(
TypeExtension
).FullName), "value");
22
return new InstanceDescriptor(typeof(
TypeExtension
).GetConstructor(new Type[] { typeof(System.Type) }),
24
return new InstanceDescriptor(typeof(
TypeExtension
).GetConstructor(new Type[] { typeof(string) }),
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (1)
3152
if (xmlQualifiedName.Name.Equals(typeof(Array).Name) || string.Equals(xmlQualifiedName.Name, "Null", StringComparison.Ordinal) || string.Equals(xmlQualifiedName.Name, typeof(NullExtension).Name, StringComparison.Ordinal) || string.Equals(xmlQualifiedName.Name, "Type", StringComparison.Ordinal) || string.Equals(xmlQualifiedName.Name, typeof(
TypeExtension
).Name, StringComparison.Ordinal))