FFMpegCore/FFMpegCore/FFMpeg/Arguments/IDynamicArgument.cs
2022-03-20 19:31:15 +01:00

16 lines
No EOL
492 B
C#

using System.Collections.Generic;
using System.Text;
namespace FFMpegCore.Arguments
{
public interface IDynamicArgument
{
/// <summary>
/// Same as <see cref="IArgument.Text"/>, but this receives the arguments generated before as parameter
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
//public string GetText(StringBuilder context);
public string GetText(IEnumerable<IArgument> context);
}
}