System\Xaml\XamlObjectReader.cs (24)
349XamlReader reader = context.Runtime.DeferredSave(context.TypeDescriptorContext, deferringLoader, propertyValue);
401propertyValue = context.Runtime.GetValue(sourceOrValue, property);
417foreach (var entry in context.Runtime.GetDictionaryItems(propertyValue, propertyType))
483object dkpObject = context.Runtime.GetValue(entry.Value, dkp);
587var serializer = (IXmlSerializable)context.Runtime.GetValue(source, property);
639var propertyValue = context.Runtime.GetValue(source, xamlProperty);
708propertyValue = context.Runtime.GetValue(sourceOrValue, property);
730IList<object> itemsList = context.Runtime.GetCollectionItems(propertyValue, xamlType);
905var props = context.Runtime.GetAttachedProperties(value);
929object actualValue = context.Runtime.GetValue(source, property);
934ShouldSerializeResult shouldSerialize = context.Runtime.ShouldSerialize(property, source);
1449context.Runtime.AttachedPropertyCount(value) > 0)
1662constructorArguments.Add(context.Runtime.GetValue(value, matchingProperty));
1861var props = context.Runtime.GetAttachedProperties(value);
2645return Runtime.CanConvertTo(TypeDescriptorContext, converter, type);
2654return Runtime.CanConvertFrom<string>(TypeDescriptorContext, converter) &&
2655Runtime.CanConvertTo(TypeDescriptorContext, converter, typeof(string));
2663Runtime.CanConvertToString(ValueSerializerContext, valueSerializer, value) &&
2664Runtime.CanConvertFrom<string>(TypeDescriptorContext, typeConverter));
2669return Runtime.ConvertToString(valueSerializerContext, valueSerializer, value);
2674return Runtime.ConvertToValue<T>(TypeDescriptorContext, converter, value);
2691value = Runtime.ConvertToString(ValueSerializerContext, valueSerializer, value);
2712if (!Runtime.CanConvertTo(TypeDescriptorContext, converter, typeof(MarkupExtension))) { return false; }
2733runtimeName = Runtime.GetValue(objectToName, runtimeNameProperty) as string;