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