Mono.Xaml.XamlParser.ParsePropertyElement C# (CSharp) Méthode

ParsePropertyElement() private méthode

private ParsePropertyElement ( ) : void
Résultat void
		private void ParsePropertyElement ()
		{
			Type t = ResolveType ();
			if (t == null)
				throw ParseException ("Unable to find the property {0}.", reader.LocalName);

			XamlPropertySetter setter = null;
			if (CurrentElement != null) {
				XamlObjectElement parent = CurrentElement as XamlObjectElement;

				if (parent == null)
					throw ParseException ("Property {0} does not have a parent.", reader.LocalName);
				if (!t.IsAssignableFrom (parent.Type))
					throw ParseException ("Property {0} is not a descendant if its parent object {1}.", reader.LocalName, parent.Type);
				setter = CurrentElement.LookupProperty (reader);
				if (setter == null)
					throw ParseException ("Property {0} was not found on type {1}.", reader.LocalName, CurrentElement.Name);
			}

			XamlPropertyElement element = new XamlPropertyElement (this, reader.LocalName, setter);
			OnElementBegin (element);
		}