mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
16 lines
No EOL
492 B
C#
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);
|
|
}
|
|
} |