8 references to KeyType
System.Xaml (5)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1373converter = grandParentXamlType.KeyType.TypeConverter; 1901Debug.WriteLine(SR.Format(SR.DictionaryFirstChanceException, ctx.ParentType, key, ctx.ParentType.KeyType));
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
392Type keyType = dictionaryType.KeyType.UnderlyingType;
System\Xaml\XamlObjectReader.cs (1)
412XamlType keyType = propertyType.KeyType;
System\Xaml\XamlType.cs (1)
990return BaseType.KeyType;
System.Xaml.Tests (3)
System\Xaml\XamlTypeTests.cs (3)
3078Assert.Equal(type.IsDictionary ? expected ?? XamlLanguage.Object : null, type.KeyType); 3090Assert.Throws<XamlSchemaException>(() => type.KeyType); 3094Assert.Null(type.KeyType);