Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/PresentationFramework/Mono.Windows.Serialization/ParserConsumerBase.cs')
-rw-r--r--mcs/class/PresentationFramework/Mono.Windows.Serialization/ParserConsumerBase.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/PresentationFramework/Mono.Windows.Serialization/ParserConsumerBase.cs b/mcs/class/PresentationFramework/Mono.Windows.Serialization/ParserConsumerBase.cs
index c14afb2c82e..1b940b3184b 100644
--- a/mcs/class/PresentationFramework/Mono.Windows.Serialization/ParserConsumerBase.cs
+++ b/mcs/class/PresentationFramework/Mono.Windows.Serialization/ParserConsumerBase.cs
@@ -6,6 +6,12 @@ using System.Xml;
using System.Diagnostics;
namespace Mono.Windows.Serialization {
+ /* base class to help consume the event stream produced by the parser
+ *
+ * the crunch method will call the relevant methods according to what
+ * the parser returns. The easiest way to implement a class that builds
+ * something from a xaml file is probably to inherit from this class.
+ */
internal abstract class ParserConsumerBase {
internal void crunch (XmlTextReader reader) {
int justClosed = 0;