5 writes to type
System.Workflow.ComponentModel (5)
AuthoringOM\Serializer\XamlInterfaces.cs (5)
154this.type = type; 185type = manager.GetType(new XmlQualifiedName(typename, reader.LookupNamespace(prefix))); 196type = manager.GetType(new XmlQualifiedName(typename, reader.LookupNamespace(string.Empty))); 203type = typeProvider.GetType(typename); 209type = manager.SerializationManager.GetType(typename);
11 references to type
System.Workflow.ComponentModel (11)
AuthoringOM\Serializer\XamlInterfaces.cs (11)
158if (this.type != null) 159return this.type; 186if (type != null) 187return type; 199if (type == null) 208if (type == null && manager.GetService(typeof(ITypeResolutionService)) == null) 211if (type != null) 212return type; 223if (this.type != null) 224return this.type.FullName; 237get { return this.type; }