示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InstructionLogger"/> class.
 /// </summary>
 /// <param name="after">The after.</param>
 /// <param name="before">The before.</param>
 public InstructionLogger(IPipelineStage after, IPipelineStage before)
 {
     _pipelineOrder = PipelineStageOrder.CreatePipelineOrder(after.GetType(), before.GetType());
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InstructionLogger"/> class.
 /// </summary>
 /// <param name="after">The after.</param>
 /// <param name="before">The before.</param>
 public InstructionLogger(Type after, Type before)
 {
     _pipelineOrder = PipelineStageOrder.CreatePipelineOrder(after, before);
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InstructionLogger"/> class.
 /// </summary>
 /// <param name="immediateAfter">The immediate after.</param>
 public InstructionLogger(Type immediateAfter)
 {
     _pipelineOrder = PipelineStageOrder.CreatePipelineOrder(immediateAfter);
 }