# DialogueCompleteHandler

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

Inherits from `System.MulticastDelegate`

## Summary

Represents the method that is called when the dialogue has reached its end, and no more code remains to be run.

```csharp
public delegate void DialogueCompleteHandler();
```

## See Also

* [LineHandler](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.linehandler): Represents the method that is called when the Dialogue delivers a [Line](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.line) .
* [OptionsHandler](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.optionshandler): Represents the method that is called when the Dialogue delivers an [OptionSet](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.optionset) .
* [CommandHandler](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.commandhandler): Represents the method that is called when the Dialogue delivers a [Command](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.command) .
* [NodeStartHandler](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.nodestarthandler): Represents the method that is called when the Dialogue begins executing a node.
* [NodeCompleteHandler](https://docs.yarnspinner.dev/2.2/api/csharp/yarn/yarn.nodecompletehandler): Represents the method that is called when the Dialogue reaches the end of a node.
