예제 #1
0
파일: PvcPipe.cs 프로젝트: modulexcite/pvc
 public PvcPipe PipeIf(Regex ifRegex, PvcPlugin truePlugin, PvcPlugin falsePlugin)
 {
     return this.PipeIf(ifRegex, (streams) => truePlugin.Execute(streams), (streams) => falsePlugin.Execute(streams));
 }
예제 #2
0
파일: PvcPipe.cs 프로젝트: modulexcite/pvc
 public PvcPipe Pipe(PvcPlugin plugin)
 {
     return this.Pipe(plugin.SupportedTags, (streams) => plugin.Execute(streams));
 }
예제 #3
0
파일: PvcPipe.cs 프로젝트: modulexcite/pvc
 public PvcPipe PipeIf(Regex ifRegex, PvcPlugin plugin)
 {
     return this.PipeIf(ifRegex, (streams) => plugin.Execute(streams));
 }