Class Argument
Argument stores information about a navigation argument.
Implements
Inherited Members
Namespace: Unity.AppUI.Navigation
Assembly: Unity.AppUI.Navigation.dll
Syntax
[Serializable]
public record Argument : IEquatable<Argument>
Constructors
Argument(string, string)
Argument stores information about a navigation argument.
Declaration
public Argument(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the argument. |
string | value | The value of the argument. |
Properties
name
The name of the navigation argument.
Declaration
public string name { get; }
Property Value
Type | Description |
---|---|
string |
value
The value of the navigation argument.
Declaration
public string value { get; }
Property Value
Type | Description |
---|---|
string |