GeoBlazor Pro
dymaptic.GeoBlazor.Pro
dymaptic.GeoBlazor.Pro.Events
FeatureFormViewModelSubmitEvent Class
Event result type for the FeatureFormViewModel.OnSubmit event.
public class FeatureFormViewModelSubmitEvent :
System.IEquatable<dymaptic.GeoBlazor.Pro.Events.FeatureFormViewModelSubmitEvent>
Inheritance System.Object 🡒 FeatureFormViewModelSubmitEvent
Implements System.IEquatable<FeatureFormViewModelSubmitEvent>
Constructors
FeatureFormViewModelSubmitEvent(IReadOnlyCollection, IReadOnlyCollection, string) Constructor
Event result type for the FeatureFormViewModel.OnSubmit event.
public FeatureFormViewModelSubmitEvent(System.Collections.Generic.IReadOnlyCollection<string>? Invalid=null, System.Collections.Generic.IReadOnlyCollection<string>? Valid=null, string? Values=null);
Parameters
Invalid
System.Collections.Generic.IReadOnlyCollection<System.String>
The invalid field names.
Valid
System.Collections.Generic.IReadOnlyCollection<System.String>
The valid field names.
Values
System.String
An object of key-value pairs of field names with all of their values,
regardless of whether or not they were updated.
Properties
FeatureFormViewModelSubmitEvent.Invalid Property
The invalid field names.
public System.Collections.Generic.IReadOnlyCollection<string>? Invalid { get; set; }
Property Value
System.Collections.Generic.IReadOnlyCollection<System.String>
FeatureFormViewModelSubmitEvent.Valid Property
The valid field names.
public System.Collections.Generic.IReadOnlyCollection<string>? Valid { get; set; }
Property Value
System.Collections.Generic.IReadOnlyCollection<System.String>
FeatureFormViewModelSubmitEvent.Values Property
An object of key-value pairs of field names with all of their values,
regardless of whether or not they were updated.
public string? Values { get; set; }