2 writes to ContentTypeName
System.Xaml (2)
System\Windows\Markup\XamlDeferLoadAttribute.cs (2)
15ContentTypeName = contentType.AssemblyQualifiedName!; 23ContentTypeName = contentType ?? throw new ArgumentNullException(nameof(contentType));
3 references to ContentTypeName
System.Xaml (1)
System\Xaml\Schema\Reflector.cs (1)
256Type contentType = Type.GetType(tca.ContentTypeName);
System.Xaml.Tests (2)
System\Windows\Markup\XamlDeferLoadAttributeTests.cs (2)
21Assert.Equal(contentType.AssemblyQualifiedName, attribute.ContentTypeName); 45Assert.Equal(contentType, attribute.ContentTypeName);