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

ContainsStep() public méthode

public ContainsStep ( Type type ) : bool
type System.Type
Résultat bool
		public bool ContainsStep (Type type)
		{
			foreach (IStep step in _steps)
				if (step.GetType () == type)
					return true;

			return false;
		}
	}