# NodeCompleteHandler

Delegate in [Yarn](https://docs.yarnspinner.dev/3.1/api/csharp/yarn)

Inherits from `System.MulticastDelegate`

## Summary

Represents the method that is called when the Dialogue reaches the end of a node.

```csharp
public delegate void NodeCompleteHandler(string completedNodeName);
```

## Remarks

This method may be called multiple times over the course of code execution. A node being complete does not necessarily represent the end of the conversation.

## Parameters

| Name                       | Description           |
| -------------------------- | --------------------- |
| `string` completedNodeName | The name of the node. |

## See Also

* [LineHandler](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.linehandler): Represents the method that is called when the Dialogue delivers a [Line](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.line) .
* [OptionsHandler](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.optionshandler): Represents the method that is called when the Dialogue delivers an [OptionSet](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.optionset) .
* [CommandHandler](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.commandhandler): Represents the method that is called when the Dialogue delivers a [Command](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.command) .
* [NodeStartHandler](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.nodestarthandler): Represents the method that is called when the Dialogue begins executing a node.
* [DialogueCompleteHandler](https://docs.yarnspinner.dev/3.1/api/csharp/yarn/yarn.dialoguecompletehandler): Represents the method that is called when the dialogue has reached its end, and no more code remains to be run.
