You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets the collection of steps added to the builder, which will be used to construct the pipeline.
19
+
/// </summary>
20
+
protectedinternalList<PipelineStep>Steps{get;}
21
+
22
+
/// <summary>
23
+
/// Initializes a new instance of the <see cref="OutPipelineBuilder{TOutput}"/> class.
24
+
/// </summary>
25
+
/// <param name="firstStep">
26
+
/// The first step of the pipeline.
27
+
/// <para><b>IMPORTANT:</b> If this is the only step, it must return <typeparamref name="TOutput"/>, otherwise the built-in pipeline types will not work.</para>
28
+
/// </param>
29
+
/// <param name="steps">
30
+
/// The collection of steps to add to the builder, which will be used to construct the pipeline.
31
+
/// <para><b>IMPORTANT:</b> The the last step must return <typeparamref name="TOutput"/>, otherwise the built-in pipeline types will not work.</para>
32
+
/// <para><b>IMPORTANT:</b> <paramref name="steps"/> is taken by reference! The list is NOT copied!</para>
0 commit comments