1 type derived from XamlObjectReaderException
System.Xaml.Tests (1)
System\Xaml\XamlObjectReaderExceptionTests.cs (1)
66private class SubXamlObjectReaderException : XamlObjectReaderException
23 instantiations of XamlObjectReaderException
System.Xaml (19)
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
712ex = new XamlObjectReaderException(message, innerException);
System\Xaml\XamlObjectReader.cs (18)
344throw new XamlObjectReaderException(SR.Format(SR.DeferringLoaderInstanceNull, deferringLoader)); 1260throw new XamlObjectReaderException(SR.ObjectReaderInstanceDescriptorIncompatibleArguments); 1267throw new XamlObjectReaderException(SR.ObjectReaderInstanceDescriptorInvalidMethod); 1274throw new XamlObjectReaderException(SR.ObjectReaderInstanceDescriptorIncompatibleArguments); 1288throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderInstanceDescriptorIncompatibleArgumentTypes, "null", parameterInfo.ParameterType)); 1294throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderInstanceDescriptorIncompatibleArgumentTypes, argument.GetType(), parameterInfo.ParameterType)); 1701throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderNoDefaultConstructor, value.GetType())); 1704throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderNoMatchingConstructor, value.GetType())); 1726throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderTypeIsNested, xamlType.Name)); 1730throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderTypeCannotRoundtrip, xamlType.Name)); 1781throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderXamlNamedElementAlreadyRegistered, Name)); 1806throw new XamlObjectReaderException(SR.ObjectReaderMultidimensionalArrayNotSupported); 1885throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderAttachedPropertyNotFound, owningType, ap.Key.MemberName)); 2143throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderXamlNamePropertyMustBeString, property.Name, property.DeclaringType)); 2642throw new XamlObjectReaderException(SR.Format(SR.ObjectReaderTypeNotAllowed, 2654throw new XamlObjectReaderException(SR.Format(SR.ObjectReader_TypeNotVisible, clrType.FullName)); 2899throw new XamlObjectReaderException(SR.Format(SR.XamlFactoryInvalidXamlNode, reader.NodeType)); 2910throw new XamlObjectReaderException(SR.Format(SR.XamlFactoryInvalidXamlNode, reader.NodeType));
System.Xaml.Tests (4)
System\Xaml\XamlObjectReaderExceptionTests.cs (4)
16var exception = new XamlObjectReaderException(); 26var exception = new XamlObjectReaderException("message"); 44var exception = new XamlObjectReaderException(message, innerException); 61var exception = new XamlObjectReaderException();
4 references to XamlObjectReaderException
System.Xaml.Tests (4)
System\Xaml\XamlObjectReaderExceptionTests.cs (4)
16var exception = new XamlObjectReaderException(); 26var exception = new XamlObjectReaderException("message"); 44var exception = new XamlObjectReaderException(message, innerException); 61var exception = new XamlObjectReaderException();