Mono.Linker.Pipeline.GetSteps C# (CSharp) Method

GetSteps() public method

public GetSteps ( ) : IStep[]
return IStep[]
		public IStep [] GetSteps ()
		{
			return (IStep []) _steps.ToArray (typeof (IStep));
		}

Usage Example

Example #1
0
        static Type FindStep(Pipeline pipeline, string name)
        {
            foreach (IStep step in pipeline.GetSteps())
            {
                Type t = step.GetType();
                if (t.Name == name)
                {
                    return(t);
                }
            }

            return(null);
        }
All Usage Examples Of Mono.Linker.Pipeline::GetSteps