System.Web.Compilation.ParserStack.Push C# (CSharp) Method

Push() public method

public Push ( AspParser parser ) : bool
parser AspParser
return bool
		public bool Push (AspParser parser)
		{
			if (files.Contains (parser.Filename))
				return false;

			files [parser.Filename] = true;
			parsers.Push (parser);
			current = parser;
			return true;
		}