Mono.Linker.Pipeline.AppendStep C# (CSharp) Méthode

AppendStep() public méthode

public AppendStep ( IStep step ) : void
step IStep
Résultat void
		public void AppendStep (IStep step)
		{
			_steps.Add (step);
		}

Usage Example

Exemple #1
0
 static Pipeline GetStandardPipeline()
 {
     Pipeline p = new Pipeline ();
     p.AppendStep (new LoadReferencesStep ());
     p.AppendStep (new BlacklistStep ());
     p.AppendStep (new TypeMapStep ());
     p.AppendStep (new MarkStep ());
     return p;
 }
All Usage Examples Of Mono.Linker.Pipeline::AppendStep