Skip to content

Class IViewNode.Child

Definition

Namespace: StardewUI.Framework.Binding
Assembly: StardewUI.dll

Child of an IViewNode, specifying the node data and the view outlet in which it should appear.

public record IViewNode.Child : System.IDisposable, 
    IEquatable<StardewUI.Framework.Binding.IViewNode.Child>

Inheritance
Object ⇦ Child

Implements
IDisposable, IEquatable<Child>

Members

Constructors

Name Description
Child(IViewNode, string) Child of an IViewNode, specifying the node data and the view outlet in which it should appear.

Properties

Name Description
EqualityContract
Node The child node.
OutletName The outlet in which the Node should be inserted.

Methods

Name Description
Dispose()

Details

Constructors

Child(IViewNode, string)

Child of an IViewNode, specifying the node data and the view outlet in which it should appear.

public Child(StardewUI.Framework.Binding.IViewNode Node, string OutletName);
Parameters

Node   IViewNode
The child node.

OutletName   string
The outlet in which the Node should be inserted.


Properties

EqualityContract

protected System.Type EqualityContract { get; }
Property Value

Type


Node

The child node.

public StardewUI.Framework.Binding.IViewNode Node { get; set; }
Property Value

IViewNode


OutletName

The outlet in which the Node should be inserted.

public string OutletName { get; set; }
Property Value

string


Methods

Dispose()

public void Dispose();