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

ContainsStep() public method

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

			return false;
		}
	}