Struct VisitContext<TContainer>
Context object used during visitation when a IProperty<TContainer> is visited.
Inherited Members
Namespace: Unity.Properties
Syntax
public readonly struct VisitContext<TContainer>
Type Parameters
Name | Description |
---|---|
TContainer | The container type of the IProperty. |
Properties
Property
The property being visited.
Declaration
public readonly IProperty<TContainer> Property { get; }
Property Value
Type | Description |
---|---|
IProperty<TContainer> |
Methods
ContinueVisitation(ref TContainer)
Continues visitation through the next visitation adapter.
Declaration
public readonly void ContinueVisitation(ref TContainer container)
Parameters
Type | Name | Description |
---|---|---|
TContainer | container | The container being visited. |
ContinueVisitationWithoutAdapters(ref TContainer)
Continues visitation while skipping the next visitation adapters.
Declaration
public readonly void ContinueVisitationWithoutAdapters(ref TContainer container)
Parameters
Type | Name | Description |
---|---|---|
TContainer | container | The container being visited. |