// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
namespace CPF.Razor
{
///
/// Defines a mechanism for an to accept inline text.
///
public interface IHandleChildContentText
{
///
/// This method is called to process inline text found in a component.
///
/// the index of the string within a group of text strings.
/// The text to handle. This text may contain whitespace at the start and end of the string.
void HandleText(int index, string text);
}
}