System.Web.Compilation.AspParser.OnTagParsed C# (CSharp) Method

OnTagParsed() private method

private OnTagParsed ( TagType tagtype, string id, TagAttributes attributes ) : void
tagtype TagType
id string
attributes TagAttributes
return void
		void OnTagParsed (TagType tagtype, string id, TagAttributes attributes)
		{
			TagParsedHandler eh = events [tagParsedEvent] as TagParsedHandler;
			if (eh != null)
				eh (this, tagtype, id, attributes);
		}