Mono.Xaml.XamlParser.ParseMcAttribute C# (CSharp) Method

ParseMcAttribute() private method

private ParseMcAttribute ( XamlElement element ) : void
element XamlElement
return void
		private void ParseMcAttribute (XamlElement element)
		{
			if (reader.LocalName == "Ignorable") {
				IgnorableXmlns.Add (reader.Value);
				return;
			}

			throw ParseException ("Undeclared prefix");
		}