2 instantiations of TypeExtension
System.Workflow.ComponentModel (2)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (2)
806propertyValue = new TypeExtension((string)propertyValue); 3163return new TypeExtension(value as System.Type);
6 references to TypeExtension
System.Workflow.ComponentModel (6)
AuthoringOM\Serializer\TypeExtensionSerializer.cs (5)
18TypeExtension typeExtension = value as TypeExtension; 20throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(TypeExtension).FullName), "value"); 22return new InstanceDescriptor(typeof(TypeExtension).GetConstructor(new Type[] { typeof(System.Type) }), 24return new InstanceDescriptor(typeof(TypeExtension).GetConstructor(new Type[] { typeof(string) }),
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (1)
3152if (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))