//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* * The interface used to interact with the Parser. * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.UI { using System; /// /// [To be supplied.] /// public interface IParserAccessor { /* * A sub-object tag was parsed by the parser; add it to this container. */ /// /// [To be supplied.] /// void AddParsedSubObject(object obj); } }