Interface IDependencyLink
Interface representing a dependency link between two objects.
Namespace: Evergine.Common
Assembly: Evergine.Common.dll
Syntax
public interface IDependencyLink
Properties
Type
Gets the dependency link type.
Declaration
DependencyLinkTypes Type { get; }
Property Value
Type | Description |
---|---|
DependencyLinkTypes |
Methods
Register()
Registers this instance in the dependency list of source and target.
Declaration
void Register()
Unregister(IDependencyObject)
Unregisters this instance from the dependency list of both the source and target.
Declaration
void Unregister(IDependencyObject caller)
Parameters
Type | Name | Description |
---|---|---|
IDependencyObject | caller | The caller. |