Class Argument
Argument stores information about a navigation argument.
Inherited Members
Namespace: Unity.AppUI.Navigation
Syntax
[Serializable]
public class 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 |