1a5b5385fc90edf4c7e472980168d55d07902780
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Core / Internal / PropertyEditing / FromExpression / Framework / IMessageLogger.cs
1 // -------------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation. All Rights Reserved.
3 // -------------------------------------------------------------------
4 //From \\authoring\Sparkle\Source\1.0.1083.0\Common\Source\Framework
5 namespace System.Activities.Presentation.Internal.PropertyEditing.FromExpression.Framework
6 {
7     // <summary>
8     // Central location to handle error, warning and informational messages
9     // </summary>
10     internal interface IMessageLogger
11     {
12         void Clear();
13         void Write(string text);
14         void WriteLine(string text);
15     }
16 }
17