Class BindingException
This class represents an exception related to a Scene Behavior.
Namespace: Evergine.Framework.Exceptions
Assembly: Evergine.Framework.dll
Syntax
public class BindingException : EvergineException
Constructors
BindingException(Guid, Type, Type, string)
Initializes a new instance of the BindingException class.
Declaration
public BindingException(Guid instanceId, Type instanceType, Type bindType, string memberName)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | instanceId | The instance ID. |
| Type | instanceType | The instance type. |
| Type | bindType | The binding type. |
| string | memberName | The member name that caused the binding error. |
Properties
BindType
Gets the binding type that caused the bind error.
Declaration
public Type BindType { get; }
Property Value
| Type | Description |
|---|---|
| Type |
InstanceId
Gets the instance ID that caused the bind error.
Declaration
public Guid InstanceId { get; }
Property Value
| Type | Description |
|---|---|
| Guid |
InstanceType
Gets the instance type that caused the bind error.
Declaration
public Type InstanceType { get; }
Property Value
| Type | Description |
|---|---|
| Type |
MemberName
Gets the member name that caused the binding error.
Declaration
public string MemberName { get; }
Property Value
| Type | Description |
|---|---|
| string |