/// <summary> /// Initializes a new instance of the <see cref="GroupAction"/> class /// </summary> /// <param name="processors">The processors to apply to each match group</param> public GroupAction(IReadOnlyList <GroupProcessor> processors) { Action = new NoopAction(); Processors = processors; }
/// <summary> /// Initializes a new instance of the <see cref="GroupAction"/> class /// </summary> /// <param name="processors">The processors to apply to each match group</param> public GroupAction(IReadOnlyList<GroupProcessor> processors) { Action = new NoopAction(); Processors = processors; }
/// <summary> /// Initializes a new instance of the <see cref="GroupAction"/> class /// </summary> /// <param name="processors">The processors to apply to each match group</param> public GroupAction(params GroupProcessor[] processors) { Action = new NoopAction(); Processors = processors; }