Interface IBilingualContentMessageReporter
Means for bilingual content processing components to communicate non-fatal issues with associated locations to the framework.
Namespace: SdlSdl.FileTypeSupportFrameworkBilingualApi
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public interface IBilingualContentMessageReporter : IBasicMessageReporter
Methods
ReportMessage(object, string, ErrorLevel, string, TextLocation, TextLocation)
Used by bilingual content processors to report a non-critical issue with an associated range or location in the bilingual object model.
Declaration
void ReportMessage(object source, string origin, ErrorLevel level, string message, TextLocation fromLocation, TextLocation uptoLocation)
Parameters
Type | Name | Description |
---|---|---|
object | source | The component the message originates from. Components typically pass |
string | origin | The description of the action/component from which this message originated. |
ErrorLevel | level | Severity of the message. |
string | message | The actual message text. |
TextLocation | fromLocation | Start of the content range that the message refers to. |
TextLocation | uptoLocation | The end of the content range that the message refers to.
This parameter is optional; it may be |
Remarks
The location objects allow a bilingual content processor to report locations inside the bilingual content model (without requiring modifications to the object model).