Interface IInPin
Interface used to handle incoming pins to nodes. This interface contains all relevant parts of an in-pin implementation not actually bound to the type of the pin.
Namespace: Fusee.Xirkit
Assembly: Fusee.Xirkit.dll
Syntax
public interface IInPin
Remarks
This interface allows in-pins of different types to be handled similarly (e.g. stored in an array). InPin<T> for all implementation parts bound to a concrete pin type.
Properties
Member
Gets the name of the member or the member chain.
Declaration
string Member { get; }
Property Value
Type | Description |
---|---|
System.String | The member' name. |
Methods
GetPinType()
Retrieves the type description of the pin.
Declaration
Type GetPinType()
Returns
Type | Description |
---|---|
System.Type | The pin's type |
Events
ReceivedValue
Occurs when this pin received a value.
Declaration
event ReceivedValueHandler ReceivedValue
Event Type
Type | Description |
---|---|
ReceivedValueHandler |