protected QueryParameter(
     NavigationState state,
     string key,
     T defaultValue,
     string?format = null)
 {
     _format      = format;
     State        = state;
     Key          = key;
     DefaultValue = defaultValue;
 }
Exemple #2
0
 public QueryProperty(NavigationState state, string key, T defaultValue, string?format = null)
     : base(state, key, defaultValue, format)
 {
 }
 public QueryArray(NavigationState state, string key, T[] defaultValue, string?format = null)
     : base(state, key, defaultValue, format)
 {
     _emptyKey = $"{Key}:empty";
 }