Class BindService
Custom attribute used to connect two Component instances.
Inherited Members
Namespace: Evergine.Framework
Assembly: Evergine.Framework.dll
Syntax
[AttributeUsage(AttributeTargets.Property|AttributeTargets.Field)]
public class BindService : BindObject
Constructors
BindService(bool)
Initializes a new instance of the BindService class.
Declaration
public BindService(bool isRequired = true)
Parameters
Type | Name | Description |
---|---|---|
bool | isRequired | Whether this binding is required. |
Methods
Resolve(DependencyObject, Type)
Resolve this binding with the specified object.
Declaration
public override object Resolve(DependencyObject instance, Type propertyType)
Parameters
Type | Name | Description |
---|---|---|
DependencyObject | instance | The object to resolve. |
Type | propertyType | The property type. |
Returns
Type | Description |
---|---|
object | The result object. |
Overrides
ResolveCollection(DependencyObject, Type)
Resolve this binding with the specified object.
Declaration
public override IEnumerable<object> ResolveCollection(DependencyObject instance, Type propertyType)
Parameters
Type | Name | Description |
---|---|---|
DependencyObject | instance | The object to resolve. |
Type | propertyType | The property type. |
Returns
Type | Description |
---|---|
IEnumerable<object> | The collection. |