3 overrides of ObjectType
PresentationFramework (3)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
63public override Type ObjectType
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
43public override Type ObjectType
src\Framework\System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
53public override Type ObjectType
19 references to ObjectType
PresentationFramework (19)
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (4)
45get { return _baseObject.ObjectType; } 242!typeof(MarkupExtension).IsAssignableFrom(item.ObjectType)) 328string typeName = typeSerializer.ConvertToString(item.ObjectType, _context); 420MarkupWriter.VerifyTypeIsSerializable(item.ObjectType);
src\Framework\System\Windows\Markup\Primitives\MarkupWriter.cs (15)
198if (lastWasString || item.ObjectType != typeof(string) || HasNonValueProperties(item)) 200scope.MakeAddressable(item.ObjectType); 463VerifyTypeIsSerializable(item.ObjectType); 466scope.RecordMapping("", NamespaceCache.GetNamespaceUriFor(item.ObjectType)); 481VerifyTypeIsSerializable(item.ObjectType); 488string uri = scope.MakeAddressable(item.ObjectType); 490string name = item.ObjectType.Name; 491if (typeof(MarkupExtension).IsAssignableFrom(item.ObjectType) && 723WritePropertyStart(prefix, item.ObjectType.Name + "." + property.PropertyDescriptor.Name, uri); 769if (!lastWasString && subItem.ObjectType == typeof(string) && 797if (!lastWasString && subItem.ObjectType == typeof(string) && !HasNonValueProperties(subItem)) 849_writer.WriteStartElement(prefix, item.ObjectType.Name + "." + property.PropertyDescriptor.Name, uri); 1036else if (property.PropertyType.IsAssignableFrom(firstItem.ObjectType)) 1120if (!IsInTypes(item.ObjectType, wrapperTypes)) 1215if (subItem.ObjectType == typeof(string))