Interface IExclude<TContainer, TValue> | Properties | 1.3.1-preview
docs.unity.cn
    Show / Hide Table of Contents

    Interface IExclude<TContainer, TValue>

    Implement this interface to filter visitation for a specific and pair.

    Namespace: Unity.Properties.Adapters
    Syntax
    public interface IExclude<TContainer, TValue> : IPropertyVisitorAdapter
    Type Parameters
    Name Description
    TContainer

    The container type being visited.

    TValue

    The value type being visited.

    Methods

    IsExcluded(Property<TContainer, TValue>, ref TContainer, ref TValue)

    Invoked when the visitor encounters specific a and pair.

    Declaration
    bool IsExcluded(Property<TContainer, TValue> property, ref TContainer container, ref TValue value)
    Parameters
    Type Name Description
    Property<TContainer, TValue> property

    The property being visited.

    TContainer container

    The container being visited.

    TValue value

    The value being visited.

    Returns
    Type Description
    Boolean

    true if visitation should be skipped, false otherwise.

    Back to top Copyright © 2020 Unity Technologies
    Generated by DocFX