Class BaseNode
Inheritance
System.Object
BaseNode
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Simplic.Flow.dll
Syntax
public abstract class BaseNode
Properties
|
Improve this Doc
View Source
FriendlyName
Declaration
public abstract string FriendlyName { get; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Id
Declaration
public Guid Id { get; set; }
Property Value
Type |
Description |
System.Guid |
|
|
Improve this Doc
View Source
Name
Declaration
public abstract string Name { get; }
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
CreateDataPins()
Declaration
public virtual void CreateDataPins()
|
Improve this Doc
View Source
CreateInNode<T>(String, Guid, String, String, DataPinContainerType, Boolean, Object)
Declaration
public virtual DataPin CreateInNode<T>(string name, Guid id, string friendlyName = null, string description = "", DataPinContainerType containerType = DataPinContainerType.Single, bool isNullable = false, object defaultValue = null)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.Guid |
id |
|
System.String |
friendlyName |
|
System.String |
description |
|
DataPinContainerType |
containerType |
|
System.Boolean |
isNullable |
|
System.Object |
defaultValue |
|
Returns
Type Parameters
|
Improve this Doc
View Source
CreateOutNode<T>(String, Guid, String, String, DataPinContainerType, Boolean, Object)
Declaration
public virtual DataPin CreateOutNode<T>(string name, Guid id, string friendlyName = null, string description = "", DataPinContainerType containerType = DataPinContainerType.Single, bool isNullable = false, object defaultValue = null)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.Guid |
id |
|
System.String |
friendlyName |
|
System.String |
description |
|
DataPinContainerType |
containerType |
|
System.Boolean |
isNullable |
|
System.Object |
defaultValue |
|
Returns
Type Parameters