AgentMulder.ReSharper.Domain.Registrations.ExceptRegistration.ExceptRegistration C# (CSharp) Method

ExceptRegistration() public method

public ExceptRegistration ( ITreeNode registrationRootElement, ITypeElement exceptElement ) : JetBrains.ReSharper.Psi
registrationRootElement ITreeNode
exceptElement ITypeElement
return JetBrains.ReSharper.Psi
        public ExceptRegistration(ITreeNode registrationRootElement, ITypeElement exceptElement)
            : base(registrationRootElement)
        {
            AddFilter(typeElement => !typeElement.Equals(exceptElement));
        }
ExceptRegistration