Commons.Xml.Relaxng.Rnc.RncWriter.IsKeyword C# (CSharp) Method

IsKeyword() private method

private IsKeyword ( string name ) : bool
name string
return bool
		private bool IsKeyword (string name)
		{
			switch (name) {
			case "attribute":
			case "default":
			case "datatypes":
			case "div":
			case "element":
			case "empty":
			case "external":
			case "grammar":
			case "include":
			case "inherit":
			case "list":
			case "mixed":
			case "namespace":
			case "notAllowed":
			case "parent":
			case "start":
			case "string":
			case "text":
			case "token":
				return true;
			default:
				return false;
			}
		}