Class PostProcessingInputNodePort
Represents the post-processing input node port.
Inherited Members
Namespace: Evergine.Framework.Graphics
Assembly: Evergine.Framework.dll
Syntax
public class PostProcessingInputNodePort : PostProcessingNodePort
  Constructors
PostProcessingInputNodePort()
Initializes a new instance of the PostProcessingInputNodePort class.
Declaration
public PostProcessingInputNodePort()
  PostProcessingInputNodePort(string, APostProcessingNodePortType)
Initializes a new instance of the PostProcessingInputNodePort class.
Declaration
public PostProcessingInputNodePort(string name, APostProcessingNodePortType type)
  Parameters
| Type | Name | Description | 
|---|---|---|
| string | name | The port name.  | 
      
| APostProcessingNodePortType | type | The port type.  | 
      
Properties
ConnectedWith
Gets or sets the post-processing connection.
Declaration
[EvergineMember(3)]
public PostProcessingPortConnection ConnectedWith { get; set; }
  Property Value
| Type | Description | 
|---|---|
| PostProcessingPortConnection | 
Methods
AddConnection(PostProcessingPortConnection)
Add new connection to the port.
Declaration
public PostProcessingInputNodePort AddConnection(PostProcessingPortConnection connection)
  Parameters
| Type | Name | Description | 
|---|---|---|
| PostProcessingPortConnection | connection | The new connection.  | 
      
Returns
| Type | Description | 
|---|---|
| PostProcessingInputNodePort | The post-processing node port(fluent syntax).  | 
      
RemoveConnection(PostProcessingPortConnection)
Remove connection.
Declaration
public PostProcessingInputNodePort RemoveConnection(PostProcessingPortConnection connection)
  Parameters
| Type | Name | Description | 
|---|---|---|
| PostProcessingPortConnection | connection | The remove connection.  | 
      
Returns
| Type | Description | 
|---|---|
| PostProcessingInputNodePort | The post-processing node port (fluent syntax).  |