<PackageReference Include="Castle.Core" Version="3.0.0.2001" />

BehaviorVisitor

public class BehaviorVisitor
public BehaviorVisitor()

public void Apply(IEnumerable behaviors)

public BehaviorVisitor Match<T>(Func<T, bool> match, Func<T, bool> apply)

public BehaviorVisitor Match<T>(Func<T, bool> match, Action<T> apply)

public BehaviorVisitor Match(Func<object, bool> match, Func<object, bool> apply)

public BehaviorVisitor Match(Func<object, bool> match, Action<object> apply)

public BehaviorVisitor OfType<T>(Func<T, bool> apply)

public BehaviorVisitor OfType<T>(Action<T> apply)