In This Article

IParseTarget Interface

Provides the base requirements for a class that can be notified with the results of a parsing operation.

public interface IParseTarget

Properties

UniqueId

Gets the Guid that uniquely identifies the control.

Guid UniqueId { get; }

Property Value

Guid:

The Guid that uniquely identifies the control.

Methods

NotifyParseComplete(IParseRequest, IParseData)

Called when a parsing operation has completed, and passes the original request along with the result.

void NotifyParseComplete(IParseRequest request, IParseData result)
Parameter Type Description
request IParseRequest

An IParseRequest that contains information about the parsing operation that was requested.

result IParseData

An IParseData that is the result of the parsing operation.