OpenRasta.Pipeline.CallGraph.Notification.GetContributorsOfType C# (CSharp) Method

GetContributorsOfType() private method

private GetContributorsOfType ( Type contributorType ) : IEnumerable
contributorType System.Type
return IEnumerable
    IEnumerable<IPipelineContributor> GetContributorsOfType(Type contributorType)
    {
      return from contributor in _contributors
        where contributorType.IsInstanceOfType(contributor)
        select contributor;
    }
  }